Skip to content

Commit

Permalink
Add test_alpine to circleci config
Browse files Browse the repository at this point in the history
  • Loading branch information
straight-shoota committed Jan 28, 2020
1 parent 7c326b0 commit 66a1239
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,22 @@ jobs:
- store_artifacts:
path: ~/test-results/spec

test_alpine:
docker:
- image: jrei/crystal-alpine:latest
environment:
<<: *env
TRAVIS_OS_NAME: linux
ARCH: x86_64
ARCH_CMD: linux64
steps:
- checkout
- run: echo 'export CURRENT_TAG="$CIRCLE_TAG"' >> $BASH_ENV
- run: bin/ci prepare_build
- run: make std_spec clean threads=1
- run: make crystal std_spec compiler_spec docs threads=1
- run: find samples -name "*.cr" | xargs -L 1 ./bin/crystal build --no-codegen

test_darwin:
macos:
xcode: "11.1.0"
Expand Down Expand Up @@ -504,6 +520,8 @@ workflows:
- /.*\bci\b.*/
- test_linux32_std:
filters: *unless_maintenance
- test_alpine:
filters: *unless_maintenance
- test_darwin:
filters: *unless_maintenance
- test_preview_mt:
Expand All @@ -528,6 +546,8 @@ workflows:
only: /.*/
- test_linux32_std:
filters: *per_tag
- test_alpine:
filters: *per_tag
- test_darwin:
filters: *per_tag
- test_preview_mt:
Expand Down Expand Up @@ -602,6 +622,7 @@ workflows:
jobs:
- test_linux
- test_linux32_std
- test_alpine
- test_darwin
- test_preview_mt
- check_format
Expand Down Expand Up @@ -660,6 +681,8 @@ workflows:
- /.*\bci\b.*/
- test_linux32_std:
filters: *maintenance
- test_alpine:
filters: *maintenance
- test_darwin:
filters: *maintenance
- test_preview_mt:
Expand Down

0 comments on commit 66a1239

Please sign in to comment.