[Git][cmucl/cmucl][master] 2 commits: Make dist tarballs after building

Raymond Toy pushed to branch master at cmucl / cmucl Commits: a99bf94d by Raymond Toy at 2025-07-12T15:38:28-07:00 Make dist tarballs after building - - - - - 38b2787c by Raymond Toy at 2025-07-12T15:38:28-07:00 Merge branch 'rtoy-debug-ci-2025-07' into 'master' Make dist tarballs after building See merge request cmucl/cmucl!309 - - - - - 2 changed files: - .gitlab-ci.yml - bin/git-version.sh Changes: ===================================== .gitlab-ci.yml ===================================== @@ -50,6 +50,7 @@ variables: # When the result of `git describe` cannot be used as a version # string, an alternative can be provided with the -V flag # The following stages need this to run tests and such. + - sh -x bin/git-version.sh - bin/make-dist.sh -I dist build-4 # Also make some tarballs so it's easy to download the artifacts. - bin/make-dist.sh -S build-4 ===================================== bin/git-version.sh ===================================== @@ -46,6 +46,11 @@ else # The git hash looks like a release which is 3 hex digits. Use it as is. DEFAULT_VERSION="${GIT_HASH}" fi + + if [ -z "$DEFAULT_VERSION" ]; then + echo "Unable to determine a default version from hash $GIT_HASH" + exit 1; + fi fi if [ -z "$FILE" ]; then View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/7287716972cc262def1c31b... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/7287716972cc262def1c31b... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)