summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 0f05dc750b8535ff6f4d8b16175cafa2909640e7 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
language: c
compiler: gcc
os: linux

# Require gettext-0.19.8
dist: focal

branches:
  only:
  - main

# FIXME: Run script in every arch
arch:
  - amd64
  #- ppc64le
  #- s390x
  #- arm64

addons:
  apt:
    packages:
    # For autogen.sh
    - autopoint
    # For make from
    # https://packages.ubuntu.com/search?searchon=sourcenames&keywords=ibus
    - desktop-file-utils
    - gobject-introspection
    - gtk-doc-tools
    - iso-codes
    - libdconf-dev
    - libgirepository1.0-dev
    - libglib2.0-dev
    - libgtk-3-bin
    - libgtk-3-dev
    - libgtk2.0-dev
    - libnotify-dev
    - libtool
    - libwayland-dev
    - python-gi-dev
    - python3-all
    - unicode-cldr-core
    - unicode-data
    - valac

jobs:
  include:
  - name: Build in Ubuntu
    before_script:
    - sudo apt-get -qq update
    env:
    - SAVE_DIST_FILES=0
    script:
    - set -e
    - git config pull.rebase false
    - git pull --depth=200
    # configure options from
    # https://salsa.debian.org/debian/ibus/-/blob/master/debian/rules
    - >
      ./autogen.sh
      --enable-gtk-doc
      --with-python=/usr/bin/python3
      --with-ucd-dir='/usr/share/unicode'
      --enable-install-tests
    # 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 distcheck
      DISTCHECK_CONFIGURE_FLAGS="
      --enable-gtk-doc
      --disable-schemas-install
      --enable-memconf
      --with-python=/usr/bin/python3
      --with-ucd-dir='/usr/share/unicode'
      --enable-install-tests
      "
      DISABLE_GUI_TESTS="ibus-compose ibus-keypress test-stress xkb-latin-layouts"
      VERBOSE=1
      DESTDIR="$HOME/build/$USER/dest"