aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: b745e9d7038db012778f785799cedb9e5bc69fc1 (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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100

src:
  script:
  - python3 /compArch/check.py
  - python3 /compArch/test_A2_src.py

Own build, build:
  needs: ["src"]
  script:
  - python3 /compArch/test_A2_own.py
Own build, test 1:
  needs: ["Own build, build"]
  script:
  - python3 /compArch/test_A2_own.py 1
Own build, test 2:
  needs: ["Own build, build"]
  script:
  - python3 /compArch/test_A2_own.py 2
Own build, test 3:
  needs: ["Own build, build"]
  script:
  - python3 /compArch/test_A2_own.py 3
Own build, test 4:
  needs: ["Own build, build"]
  script:
  - python3 /compArch/test_A2_own.py 4
Own build, test 5:
  needs: ["Own build, build"]
  script:
  - python3 /compArch/test_A2_own.py 5
Own build, test 6:
  needs: ["Own build, build"]
  script:
  - python3 /compArch/test_A2_own.py 6
Own build, test 7:
  needs: ["Own build, build"]
  script:
  - python3 /compArch/test_A2_own.py 7
Own build, test 8:
  needs: ["Own build, build"]
  script:
  - python3 /compArch/test_A2_own.py 8
Own build, test 9:
  needs: ["Own build, build"]
  script:
  - python3 /compArch/test_A2_own.py 9
Own build, test 10:
  needs: ["Own build, build"]
  script:
  - python3 /compArch/test_A2_own.py 10

Our build, build:
  needs: ["src"]
  script:
  - python3 /compArch/test_A2_our.py
Our build, test 1:
  needs: ["Our build, build"]
  script:
  - python3 /compArch/test_A2_our.py 1
Our build, test 2:
  needs: ["Our build, build"]
  script:
  - python3 /compArch/test_A2_our.py 2
Our build, test 3:
  needs: ["Our build, build"]
  script:
  - python3 /compArch/test_A2_our.py 3
Our build, test 4:
  needs: ["Our build, build"]
  script:
  - python3 /compArch/test_A2_our.py 4
Our build, test 5:
  needs: ["Our build, build"]
  script:
  - python3 /compArch/test_A2_our.py 5
Our build, test 6:
  needs: ["Our build, build"]
  script:
  - python3 /compArch/test_A2_our.py 6
Our build, test 7:
  needs: ["Our build, build"]
  script:
  - python3 /compArch/test_A2_our.py 7
Our build, test 8:
  needs: ["Our build, build"]
  script:
  - python3 /compArch/test_A2_our.py 8
Our build, test 9:
  needs: ["Our build, build"]
  script:
  - python3 /compArch/test_A2_our.py 9
Our build, test 10:
  needs: ["Our build, build"]
  script:
  - python3 /compArch/test_A2_our.py 10

Header Check:
  needs: ["src"]
  script:
  - python3 /compArch/test_A2_header.py