-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.gitlab-ci.yml
79 lines (67 loc) · 1.61 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
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
include:
# Metadata shared my many jobs
- local: .gitlab/rules.yml
- local: .gitlab/artifacts.yml
- local: .gitlab/documentation.yml
# OS builds.
- local: .gitlab/os-linux.yml
- local: .gitlab/os-windows.yml
stages:
- build
- test
- deploy
################################################################################
# Job declarations
#
# Each job must pull in each of the following keys:
#
# - a "base image"
# - a build script
# - tags for the jobs
# - rules for when to run the job
#
# Additionally, jobs may also contain:
#
# - artifacts
# - needs for required jobs
################################################################################
pages:
extends:
- .doc_build
- .run_on_mirror_default_branch
# Linux
## Build and test
fedora36:build:
extends:
- .fedora36
- .cmake_build_linux
- .cmake_build_artifacts
- .linux_builder_tags
- .run_manually
fedora36:test:
extends:
- .fedora36
- .cmake_test_linux
- .cmake_test_artifacts
- .linux_test_tags
- .run_dependent
needs:
- fedora36:build
# Windows
## Build and test
windows-vs2022-ninja:build:
extends:
- .windows_vs2022_ninja
- .cmake_build_windows
- .cmake_build_artifacts
- .windows_builder_tags
- .run_manually
windows-vs2022-ninja:test:
extends:
- .windows_vs2022_ninja
- .cmake_test_windows
- .cmake_test_artifacts
- .windows_builder_tags
- .run_dependent
needs:
- windows-vs2022-ninja:build