Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
-
39c8b616
by Raymond Toy at 2024-09-01T14:24:21+00:00
-
c1514a66
by Raymond Toy at 2024-09-01T14:24:22+00:00
1 changed file:
Changes:
| ... | ... | @@ -98,6 +98,18 @@ linux:test: |
| 98 | 98 | script:
|
| 99 | 99 | - bin/run-unit-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
|
| 100 | 100 | |
| 101 | +linux:exec-test:
|
|
| 102 | + stage: test
|
|
| 103 | + tags:
|
|
| 104 | + - linux
|
|
| 105 | + needs:
|
|
| 106 | + - job: linux:build
|
|
| 107 | + artifacts: true
|
|
| 108 | + script:
|
|
| 109 | + # Create an executable and test it by printing the version.
|
|
| 110 | + - dist/bin/lisp -eval '(save-lisp "saved-lisp-executable" :executable t)'
|
|
| 111 | + - ./saved-lisp-executable --version
|
|
| 112 | + |
|
| 101 | 113 | linux:cross-test:
|
| 102 | 114 | stage: test
|
| 103 | 115 | tags:
|
| ... | ... | @@ -202,6 +214,18 @@ osx:test: |
| 202 | 214 | - echo LANG = $LANG
|
| 203 | 215 | - bin/run-unit-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
|
| 204 | 216 | |
| 217 | +osx:exec-test:
|
|
| 218 | + stage: test
|
|
| 219 | + tags:
|
|
| 220 | + - macos-virtualbox
|
|
| 221 | + needs:
|
|
| 222 | + - job: osx:build
|
|
| 223 | + artifacts: true
|
|
| 224 | + script:
|
|
| 225 | + # Create an executable and test it by printing the version.
|
|
| 226 | + - dist/bin/lisp -eval '(save-lisp "saved-lisp-executable" :executable t)'
|
|
| 227 | + - ./saved-lisp-executable --version
|
|
| 228 | +
|
|
| 205 | 229 | osx:ansi-test:
|
| 206 | 230 | stage: ansi-test
|
| 207 | 231 | tags:
|