Raymond Toy pushed to branch issue-354-add-executable-test-to-ci at cmucl / cmucl
Commits: 4ae24455 by Raymond Toy at 2024-09-01T06:22:39-07:00 Rename foo to saved-lisp-executable
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -107,8 +107,8 @@ linux:exec-test: artifacts: true script: # Create an executable and test it by printing the version. - - dist/bin/lisp -eval '(save-lisp "foo" :executable t)' - - ./foo --version + - dist/bin/lisp -eval '(save-lisp "saved-lisp-executable" :executable t)' + - ./saved-lisp-executable --version
linux:cross-test: stage: test @@ -223,8 +223,8 @@ osx:exec-test: artifacts: true script: # Create an executable and test it by printing the version. - - dist/bin/lisp -eval '(save-lisp "foo" :executable t)' - - ./foo --version + - dist/bin/lisp -eval '(save-lisp "saved-lisp-executable" :executable t)' + - ./saved-lisp-executable --version
osx:ansi-test: stage: ansi-test
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/4ae24455fcc02021aaf467a1...