diff options
| author | Jakob Lykke Andersen <Jakob@caput.dk> | 2025-11-29 17:54:52 +0100 |
|---|---|---|
| committer | Jakob Lykke Andersen <Jakob@caput.dk> | 2025-11-29 17:54:52 +0100 |
| commit | 7e9c085f4fb9988490dc507ff2a9a121c80eb195 (patch) | |
| tree | cbf8658151438d0ea33a4e02ea303182ece41538 /.gitlab-ci.yml | |
| parent | 9d4394e359e69010114c1ddbef8a9e7fb53c5f9e (diff) | |
| download | cycle-detector-7e9c085f4fb9988490dc507ff2a9a121c80eb195.tar.gz cycle-detector-7e9c085f4fb9988490dc507ff2a9a121c80eb195.zip | |
Add/update/reset files
Diffstat (limited to '.gitlab-ci.yml')
| -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 |