[Git][cmucl/cmucl][master] 2 commits: Fix #508: Save ansi-test log even if it fails CI
Raymond Toy pushed to branch master at cmucl / cmucl Commits: f373711b by Raymond Toy at 2026-05-31T17:57:04-07:00 Fix #508: Save ansi-test log even if it fails CI - - - - - 1b0a461c by Raymond Toy at 2026-05-31T17:57:04-07:00 Merge branch 'issue-508-ansi-test-log-artifact-on-failure' into 'master' Fix #508: Save ansi-test log even if it fails CI Closes #508 See merge request cmucl/cmucl!382 - - - - - 1 changed file: - .gitlab-ci.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -85,10 +85,15 @@ workflow: .ansi-test: stage: ansi-test artifacts: + # Always save artifacts even when the job fails. + when: always paths: - ansi-test.out script: - bin/run-ansi-tests.sh -l dist/bin/lisp + after_script: + # This after_script always runs to save the log file even if + # run-ansi-tests.sh fails. - cp ../ansi-test/test.out ansi-test.out # Default configuration for running unit tests. View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/8544d3ebd5ad3c66a29fc81... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/8544d3ebd5ad3c66a29fc81... You're receiving this email because of your account on gitlab.common-lisp.net. Manage all notifications: https://gitlab.common-lisp.net/-/profile/notifications | Help: https://gitlab.common-lisp.net/help
participants (1)
-
Raymond Toy (@rtoy)