Raymond Toy pushed to branch rtoy-add-opensuse-runner at cmucl / cmucl
Commits:
-
0b5e55e9
by Raymond Toy at 2024-08-05T09:20:42-07:00
1 changed file:
Changes:
| ... | ... | @@ -299,3 +299,32 @@ opensuse:build: |
| 299 | 299 | # describe return something that make-dist.sh doesn't like.
|
| 300 | 300 | - bin/make-dist.sh -V `git describe --dirty` -I dist linux-4
|
| 301 | 301 | |
| 302 | +opensuse:test:
|
|
| 303 | + stage: test
|
|
| 304 | + tags:
|
|
| 305 | + - linux
|
|
| 306 | + artifacts:
|
|
| 307 | + paths:
|
|
| 308 | + - ansi-test/test.out
|
|
| 309 | + - test.log
|
|
| 310 | + needs:
|
|
| 311 | + # Needs artifacts from build (dist/)
|
|
| 312 | + - job: opensuse:build
|
|
| 313 | + artifacts: true
|
|
| 314 | + script:
|
|
| 315 | + - bin/run-unit-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
|
|
| 316 | + |
|
| 317 | +opensuse:ansi-test:
|
|
| 318 | + stage: ansi-test
|
|
| 319 | + tags:
|
|
| 320 | + - linux
|
|
| 321 | + artifacts:
|
|
| 322 | + paths:
|
|
| 323 | + - ansi-test/test.out
|
|
| 324 | + needs:
|
|
| 325 | + # Needs artifacts from build (dist/)
|
|
| 326 | + - job: opensuse:build
|
|
| 327 | + artifacts: true
|
|
| 328 | + script:
|
|
| 329 | + - bin/run-ansi-tests.sh -l dist/bin/lisp
|
|
| 330 | + |