aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci
diff options
context:
space:
mode:
authorPierre Fenoll <[email protected]>2018-07-01 23:13:20 +0200
committerGitHub <[email protected]>2018-07-01 23:13:20 +0200
commit2d5ee612b89138b13dcf24fa100582c8c7cdf75e (patch)
tree51918dc5451b7d0370ef13ad4a9c7d02b608fa14 /.circleci
parent27c8302979c9255b05eb23311da0ce0a61007160 (diff)
downloadkerl-2d5ee612b89138b13dcf24fa100582c8c7cdf75e.tar.gz
kerl-2d5ee612b89138b13dcf24fa100582c8c7cdf75e.tar.bz2
kerl-2d5ee612b89138b13dcf24fa100582c8c7cdf75e.zip
21: build otp21 on latest alpine + fix latest shellcheck warnings (#286)
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml18
1 files changed, 14 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index b555249..b1f3638 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -3,6 +3,7 @@ workflows:
version: 2
test-workflow:
jobs:
+ - alpine_21
- alpine3.7_20.3
- centos7_19.3
- centos6_18.3
@@ -12,14 +13,14 @@ workflows:
jobs:
- alpine3.7_20.3:
+ alpine_21:
docker:
- - image: alpine:3.7
+ - image: alpine
environment:
- - _KERL_VSN: 20.3
+ - _KERL_VSN: '21.0.1'
- KERL_BUILD_BACKEND: git
- KERL_BUILD_DOCS: 'yes'
- steps:
+ steps: &alpine_steps
- run: apk update && apk upgrade
- run: |
apk add curl ca-certificates \
@@ -45,6 +46,15 @@ jobs:
- run: ./kerl delete installation $(./kerl path install_$_KERL_VSN)
- run: ./kerl delete build "$_KERL_VSN"
+ alpine3.7_20.3:
+ docker:
+ - image: alpine:3.7
+ environment:
+ - _KERL_VSN: 20.3
+ - KERL_BUILD_BACKEND: git
+ - KERL_BUILD_DOCS: 'yes'
+ steps: *alpine_steps
+
centos7_19.3:
docker:
- image: centos:7