aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
diff options
context:
space:
mode:
Diffstat (limited to '.circleci/config.yml')
-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