Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
cl-docker-images
sbcl
Commits
dfbb8f9c
Commit
dfbb8f9c
authored
Feb 26, 2021
by
Eric Timmons
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Speed up nightly armv7 builds on alpine3.13
parent
21248503
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
3 deletions
+30
-3
Dockerfile-apk-nightly.template
Dockerfile-apk-nightly.template
+10
-1
nightly/alpine3.12/Dockerfile
nightly/alpine3.12/Dockerfile
+10
-1
nightly/alpine3.13/Dockerfile
nightly/alpine3.13/Dockerfile
+10
-1
No files found.
Dockerfile-apk-nightly.template
View file @
dfbb8f9c
...
...
@@ -11,7 +11,16 @@ RUN set -x \
&& case "$(cat /etc/apk/arch)" in \
# We use ECL to build because the version of SBCL in the edge repo doesn't
# work for armv7 (edge has updated musl libc incompatibly).
armv7) SBCL_ARCH=arm; HOST_LISP="ecl"; ECL_VERSION=20.4.24; export ECL_VERSION;; \
armv7) \
SBCL_ARCH=arm; \
if grep "3.13" /etc/issue 2>/dev/null >/dev/null ; then \
HOST_LISP="sbcl"; \
else \
HOST_LISP="ecl"; \
ECL_VERSION=20.4.24; \
export ECL_VERSION; \
fi \
;; \
aarch64) SBCL_ARCH=arm64; HOST_LISP="sbcl";; \
x86_64) SBCL_ARCH=x86-64; HOST_LISP="sbcl";; \
*) echo "Unknown arch" >&2; exit 1;; \
...
...
nightly/alpine3.12/Dockerfile
View file @
dfbb8f9c
...
...
@@ -16,7 +16,16 @@ RUN set -x \
&&
case
"
$(
cat
/etc/apk/arch
)
"
in
\
# We use ECL to build because the version of SBCL in the edge repo doesn't
# work for armv7 (edge has updated musl libc incompatibly).
armv7) SBCL_ARCH=arm; HOST_LISP="ecl"; ECL_VERSION=20.4.24; export ECL_VERSION;; \
armv7) \
SBCL_ARCH=arm; \
if grep "3.13" /etc/issue 2>/dev/null >/dev/null ; then \
HOST_LISP="sbcl"; \
else \
HOST_LISP="ecl"; \
ECL_VERSION=20.4.24; \
export ECL_VERSION; \
fi \
;; \
aarch64) SBCL_ARCH=arm64; HOST_LISP="sbcl";; \
x86_64) SBCL_ARCH=x86-64; HOST_LISP="sbcl";; \
*) echo "Unknown arch" >&2; exit 1;; \
...
...
nightly/alpine3.13/Dockerfile
View file @
dfbb8f9c
...
...
@@ -16,7 +16,16 @@ RUN set -x \
&&
case
"
$(
cat
/etc/apk/arch
)
"
in
\
# We use ECL to build because the version of SBCL in the edge repo doesn't
# work for armv7 (edge has updated musl libc incompatibly).
armv7) SBCL_ARCH=arm; HOST_LISP="ecl"; ECL_VERSION=20.4.24; export ECL_VERSION;; \
armv7) \
SBCL_ARCH=arm; \
if grep "3.13" /etc/issue 2>/dev/null >/dev/null ; then \
HOST_LISP="sbcl"; \
else \
HOST_LISP="ecl"; \
ECL_VERSION=20.4.24; \
export ECL_VERSION; \
fi \
;; \
aarch64) SBCL_ARCH=arm64; HOST_LISP="sbcl";; \
x86_64) SBCL_ARCH=x86-64; HOST_LISP="sbcl";; \
*) echo "Unknown arch" >&2; exit 1;; \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment