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

stages:
 - build
 - test

build-mutter:
  stage: build
  script:
    - meson . build -Degl_device=true -Dwayland_eglstream=true -Dheadless_tests=enabled
    - ninja -C build
    - ninja -C build install
    - meson test -v -C build --suite headless
  # artifacts:
  #   paths:
  #     - build

# test-cogl:
#   stage: test
#   dependencies:
#     - build-mutter
#   artifacts:
#     paths:
#       - build
#   script:
#     - meson test -v -C build --suite cogl-headless

# test-clutter:
#   stage: test
#   dependencies:
#     - build-mutter
#   artifacts:
#     paths:
#       - build
#   script:
#     - meson test -v -C build --suite clutter-headless

# test-mutter:
#   stage: test
#   dependencies:
#     - build-mutter
#   artifacts:
#     paths:
#       - build
#   script:
#     - meson test -v -C build --suite mutter-headless