summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 63d86101fca3aada65c3e7d14c390e4d59a1a6fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
language: c
compiler: gcc
os: linux

# Require gettext-0.19.8
dist: focal

branches:
  only:
  - main

arch:
  - amd64
  #- ppc64le
  #- s390x
  #- arm64

addons:
  apt:
    packages:
    # For autogen.sh
    - autopoint
    # For make from
    # https://packages.ubuntu.com/search?searchon=sourcenames&keywords=ibus-anthy
    - desktop-file-utils
    - gir1.2-ibus-1.0
    - gobject-introspection
    - gettext
    - libanthy-dev
    - libgirepository1.0-dev
    - libglib2.0-dev
    - pkg-config
    - python3-dev
    - python3-gi

jobs:
  include:
  - name: Build
    before_script:
    - sudo apt-get -qq update
    script:
    - set -e
    - git config pull.rebase false
    - git pull --depth=200
    # configure options from
    # https://salsa.debian.org/debian/ibus-anthy/-/blob/master/debian/rules
    - >
      ./autogen.sh
      --libexecdir=/usr/lib/ibus
      --with-layout='default'
      --with-python=python3
      --with-hotkeys
      --with-on-off-keys="'Zenkaku_Hankaku', 'Ctrl+space', 'Ctrl+J'"
      --enable-installed-tests
      --disable-static
    # Set the cutom DESTDIR because the default DESTDIR
    # /home/travis/bulid/fujiwarat/$PKG/ibus/ibus-$VERSION/_inst seems to be
    # too long and failed to set DESTDIR to install bindings/pygobject/IBus.py
    - >
      make
      VERBOSE=1
      DESTDIR="$HOME/build/$USER/dest"
    - >
      desktop-file-validate
      ./setup/python3/ibus-setup-anthy.desktop