Raymond Toy pushed to branch issue-299-enable-xoroshiro-assem-routine at cmucl / cmucl
Commits:
-
ed577605
by Raymond Toy at 2024-04-08T20:22:10-07:00
2 changed files:
Changes:
... | ... | @@ -48,7 +48,7 @@ linux:build: |
48 | 48 | # Regular build using the cross-compiled result or snapshot
|
49 | 49 | - bin/build.sh $bootstrap -R -C "x86_linux_clang" -o snapshot/bin/lisp
|
50 | 50 | # - bin/build.sh $bootstrap -R -C "x86_linux" -o snapshot/bin/lisp
|
51 | - - bin/make-dist.sh -I dist linux-4
|
|
51 | + - bin/make-dist.sh -V ci-build -I dist linux-4
|
|
52 | 52 | |
53 | 53 | linux:test:
|
54 | 54 | stage: test
|
... | ... | @@ -131,7 +131,7 @@ osx:build: |
131 | 131 | # Regular build using the cross-compiled result or snapshot.
|
132 | 132 | # Need /opt/local/bin to get msgmerge and msgfmt programs.
|
133 | 133 | - PATH=/opt/local/bin:$PATH bin/build.sh $bootstrap -R -C "" -o snapshot/bin/lisp
|
134 | - - bin/make-dist.sh -I dist darwin-4
|
|
134 | + - bin/make-dist.sh -V ci-build -I dist darwin-4
|
|
135 | 135 | |
136 | 136 | osx:test:
|
137 | 137 | stage: test
|
... | ... | @@ -98,6 +98,8 @@ def_arch_os |
98 | 98 | # ("snapshot-yyyy-mm") or a release number..
|
99 | 99 | GIT_HASH="`(cd src; git describe --dirty 2>/dev/null)`"
|
100 | 100 | |
101 | +echo GIT_HASH = ${GIT_HASH}
|
|
102 | + |
|
101 | 103 | if expr "X${GIT_HASH}" : 'Xsnapshot-[0-9][0-9][0-9][0-9]-[01][0-9]' > /dev/null; then
|
102 | 104 | DEFAULT_VERSION=`expr "${GIT_HASH}" : "snapshot-\(.*\)"`
|
103 | 105 | fi
|