-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitlab-ci.yml
75 lines (64 loc) · 1.93 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
.cicd_job_defaults: &cicd_job_defaults
only:
- master
- release/*
- develop
.cicd_testing_job_defaults: &cicd_testing_job_defaults
<<: *cicd_job_defaults
artifacts:
paths:
- htmlcov
.cicd_docs_job_defaults: &cicd_docs_job_defaults
<<: *cicd_job_defaults
artifacts:
paths:
- htmlcov
doc_pages:
<<: *cicd_docs_job_defaults
image: debian:10
script:
- ./tests/scripts/install_root.sh GITLAB 3 7
- ./tests/scripts/install.sh GITLAB 3 7
- ./tests/scripts/docs.sh GITLAB 3 7
tests_py3.9:
<<: *cicd_testing_job_defaults
image: debian:11
script:
- ./tests/scripts/install_root.sh GITLAB 3 9
- ./tests/scripts/install.sh GITLAB 3 9
- ./tests/scripts/test.sh GITLAB 3 9
tests_py3.7:
<<: *cicd_testing_job_defaults
image: debian:10
script:
- ./tests/scripts/install_root.sh GITLAB 3 7
- ./tests/scripts/install.sh GITLAB 3 7
- ./tests/scripts/test.sh GITLAB 3 7
tests_py3.5:
<<: *cicd_testing_job_defaults
image: debian:9
script:
- ./tests/scripts/install_root.sh GITLAB 3 5
- ./tests/scripts/install.sh GITLAB 3
- ./tests/scripts/test.sh GITLAB 3 5
tests_debtesting:
<<: *cicd_testing_job_defaults
image: debian:testing
script:
- ./tests/scripts/install_root.sh GITLAB 3
- ./tests/scripts/install.sh GITLAB 3
- ./tests/scripts/test.sh GITLAB 3
tests_debstable:
<<: *cicd_testing_job_defaults
image: debian:stable
script:
- ./tests/scripts/install_root.sh GITLAB 3
- ./tests/scripts/install.sh GITLAB 3
- ./tests/scripts/test.sh GITLAB 3
tests_deboldstable:
<<: *cicd_testing_job_defaults
image: debian:oldstable
script:
- ./tests/scripts/install_root.sh GITLAB 3
- ./tests/scripts/install.sh GITLAB 3
- ./tests/scripts/test.sh GITLAB 3