summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: a181736cbc267dc17d5815d89daf8fbe73d74558 (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
image: registry.gitlab.gnome.org/gnome/libsoup/master:v1

fedora-autotools-x86_64:
  tags:
    - non_aws
  script:
    - mkdir -p _build
    - cd _build
    - ../autogen.sh
    - make
    - make check
  artifacts:
    paths:
      - _build/config.log
      - _build/tests/test-suite.log
    when: on_failure

fedora-meson-x86_64:
  tags:
    - non_aws
  script:
    - meson _build
    - ninja -C _build
    - ninja -C _build test
  artifacts:
    paths:
      - "_build/meson-logs"
    when: on_failure