-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitlab-ci.yml
54 lines (50 loc) · 1.31 KB
/
.gitlab-ci.yml
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
debian-buster-gcc:
image: debian:buster-slim
before_script:
- apt-get update
- apt-get install -y meson ninja-build build-essential ca-certificates
script:
- meson build --werror
- cd build
- ninja -v
- ninja test
debian-bullseye-gcc:
image: debian:bullseye-slim
before_script:
- apt-get update
- apt-get install -y meson ninja-build build-essential ca-certificates
script:
- meson build --werror
- cd build
- ninja -v
- ninja test
debian-bullseye-clang:
image: debian:bullseye-slim
before_script:
- apt-get update
- apt-get install -y meson ninja-build build-essential clang ca-certificates
script:
- CC=clang CXX=clang++ meson --werror build
- cd build
- ninja -v
- ninja test
gcc-11:
image: gcc:11
before_script:
- apt-get update
- apt-get install -y meson ninja-build ca-certificates
script:
- meson build --werror
- cd build
- ninja -v
- ninja test
gcc-latest:
image: gcc:latest
before_script:
- apt-get update
- apt-get install -y meson ninja-build ca-certificates
script:
- meson build --werror
- cd build
- ninja -v
- ninja test