Skip to content

Commit

Permalink
Use alpine image from crystallang
Browse files Browse the repository at this point in the history
  • Loading branch information
straight-shoota committed Jan 28, 2020
1 parent ecd7d17 commit 39cbcb4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ jobs:
environment:
<<: *env
TRAVIS_OS_NAME: linux
ARCH: x86_64
ARCH: x86_64-musl
ARCH_CMD: linux64
DOCKER_TEST_IMAGE: jrei/crystal-alpine:latest
DOCKER_TEST_PREFIX: crystallang/crystal:ci-test-dev # TODO: Remove after 0.33.0
steps: *ci_steps

test_darwin:
Expand Down
7 changes: 5 additions & 2 deletions bin/ci
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,13 @@ with_build_env() {

case $ARCH in
x86_64)
export DOCKER_TEST_IMAGE="${DOCKER_TEST_IMAGE:=$DOCKER_TEST_PREFIX-build}"
export DOCKER_TEST_IMAGE="$DOCKER_TEST_PREFIX-build"
;;
x86_64-musl)
export DOCKER_TEST_IMAGE="$DOCKER_TEST_PREFIX-alpine-build"
;;
i386)
export DOCKER_TEST_IMAGE="${DOCKER_TEST_IMAGE:=$DOCKER_TEST_PREFIX-i386-build}"
export DOCKER_TEST_IMAGE="$DOCKER_TEST_PREFIX-i386-build"
;;
esac

Expand Down

0 comments on commit 39cbcb4

Please sign in to comment.