-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
75 lines (66 loc) · 2.39 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
# Copyright (C) 2021-2022 Stealth Software Technologies, Inc.
# FOR SIEVE PROGRAM USE ONLY
test-ubuntu-18:
image: registry.stealthsoftwareinc.com/stealth/builder-images/ubuntu:18.04
script:
- make BUILD_TYPE=CI test
- make clean
- make BUILD_TYPE=CI CXX=clang++ test
- make regression-test
- make install
- cd docs/6_sample_backends/ && make -j3 CXX=g++ && make clean && make -j3 CXX=clang++
test-ubuntu-20:
image: registry.stealthsoftwareinc.com/stealth/builder-images/ubuntu:20.04
script:
- make BUILD_TYPE=CI test
- make clean
- make BUILD_TYPE=CI CXX=clang++ test
- make regression-test
- make install
- cd docs/6_sample_backends/ && make -j3 CXX=g++ && make clean && make -j3 CXX=clang++
test-centos-stream8:
image: registry.stealthsoftwareinc.com/stealth/builder-images/centos:stream8
script:
- make BUILD_TYPE=CI test
- make clean
- make BUILD_TYPE=CI CXX=clang++ test
- make regression-test
- make install
- cd docs/6_sample_backends/ && make -j3 CXX=g++ && make clean && make -j3 CXX=clang++
test-rockylinux-8:
image: registry.stealthsoftwareinc.com/stealth/builder-images/rockylinux:8
script:
- make BUILD_TYPE=CI test
- make clean
- make BUILD_TYPE=CI CXX=clang++ test
- make regression-test
- make install
- cd docs/6_sample_backends/ && make -j3 CXX=g++ && make clean && make -j3 CXX=clang++
test-centos-7:
image: registry.stealthsoftwareinc.com/stealth/builder-images/centos:7
script:
- make ENABLE_ANTLR=0 CMAKE_CMD=cmake3 BUILD_TYPE=CI test
- PYTHONPATH="src/main/python" python3 src/test/python/regression_tests.py
test-nixos:
image: registry.stealthsoftwareinc.com/stealth/wiztoolkit/wtk-nix
script:
- nix-build
- 'nix-shell -p "python3.withPackages(ps: with ps; [numpy])" --run "PYTHONPATH=src/main/python python3 src/test/python/regression_tests.py result/bin/"'
static-analysis-centos-stream8:
image: registry.stealthsoftwareinc.com/stealth/builder-images/centos:stream8
script:
- make static-analysis
static-analysis-rockylinux-8:
image: registry.stealthsoftwareinc.com/stealth/builder-images/rockylinux:8
script:
- make static-analysis
pages:
image: registry.stealthsoftwareinc.com/kimee/stealth-pages-theme
script:
- cd pages/
- ./_scripts/download_content.sh
- jekyll build -d ../public
artifacts:
paths:
- public
when: manual