Skip to content

Commit

Permalink
ci: bring back testing on alpine
Browse files Browse the repository at this point in the history
Ref: #31

Signed-off-by: Robert Günzler <[email protected]>
  • Loading branch information
robertgzr committed Oct 12, 2022
1 parent 04ff89f commit 378cf54
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,15 +208,18 @@ jobs:
- checkout
- npm_install:
os: << parameters.os >>
- when:
condition:
equal: [ "alpine", << parameters.os >> ]
steps:
- prepare:
os: << parameters.os >>
- run:
command: npm run build:test
- test

## WORKFLOWS ##

matrix: &matrix
matrix:
parameters:
os: [ debian, linux, macos, "win/default" ]

workflows:
postject:
jobs:
Expand All @@ -225,8 +228,16 @@ workflows:
parameters:
os: [ linux, macos, "win/default" ]
- build:
<<: *matrix
matrix:
parameters:
os: [ linux, macos, "win/default" ]
- test:
<<: *matrix
matrix:
parameters:
os: [ macos, "win/default" ]
requires: [ build-<< matrix.os >> ]

- test:
matrix:
parameters:
os: [ alpine, debian ]
requires: [ build-linux ]

0 comments on commit 378cf54

Please sign in to comment.