diff options
Diffstat (limited to '')
| -rw-r--r-- | .gitlab-ci.yml | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..b745e9d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,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 |