[Git][cmucl/cmucl][issue-423-update-ci-for-snapshot] Use correct tar options and tarball extension

Raymond Toy pushed to branch issue-423-update-ci-for-snapshot at cmucl / cmucl Commits: f720c990 by Raymond Toy at 2025-07-12T17:11:15-07:00 Use correct tar options and tarball extension Oops. The latest snapshots have an "xz" extension so we need to use the correct extension and the correct options for tar. - - - - - 1 changed file: - .gitlab-ci.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -18,7 +18,7 @@ variables: - $CURL -o cmucl-$version-$osname.tar.bz2 $download_url/cmucl-$version-$osname.tar.bz2 - $CURL -o cmucl-$version-$osname.extra.tar.bz2 $download_url/cmucl-$version-$osname.extra.tar.bz2 - mkdir snapshot - - (cd snapshot; tar xjf ../cmucl-$version-$osname.tar.bz2; tar xjf ../cmucl-$version-$osname.extra.tar.bz2) + - (cd snapshot; tar xf ../cmucl-$version-$osname.tar.xz; tar xf ../cmucl-$version-$osname.extra.tar.xz) # Default build configuration to be added to each build stage for each # OS. This assumes we don't need anything special between OSes, and View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/f720c990e71166c04d083bb3... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/f720c990e71166c04d083bb3... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)