summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 9c18caf9cb2c48bcb14d82d3ef6363f15c223b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
stages:
  - test

test-autotools-fedora-latest:
  stage: test
  image: registry.gitlab.gnome.org/sthursfield/tracker-oci-images/amd64/fedora:latest

  script:
    - su tracker -c './autogen.sh --disable-functional-tests --prefix=/usr'
    - su tracker -c 'make -j'
    - LANG=en_US.UTF8 VERBOSE=1 su tracker -c 'dbus-launch make check'

test-meson-fedora28:
  stage: test
  image: registry.gitlab.gnome.org/sthursfield/tracker-oci-images/amd64/fedora:latest

  script:
    - su tracker -c 'mkdir build'
    - su tracker -c 'cd build; meson .. -Dfunctional_tests=false'
    - su tracker -c 'cd build; ninja'
    - su tracker -c 'cd build; LANG=en_US.UTF8 dbus-launch meson test --print-errorlogs'