Skip to content

Commit

Permalink
chore: Use default Apline version from docker-node (#3121)
Browse files Browse the repository at this point in the history
* chore: Use default Apline version from docker-node

* chore: Add python version to CI matrix

* chore: Use default Alpine image for each version
  • Loading branch information
nschonni committed Jun 2, 2021
1 parent 886319b commit cfcbb2c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/alpine.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
container:
image: node:${{ matrix.node }}-alpine${{ matrix.alpine }}
image: node:${{ matrix.node }}-alpine
strategy:
fail-fast: false
matrix:
Expand All @@ -22,17 +22,17 @@ jobs:

include:
- node: 12
alpine: "3.9"
python: python2
- node: 14
alpine: "3.10"
python: python3
- node: 15
alpine: "3.10"
python: python3
- node: 16
alpine: "3.11"
python: python3

steps:
- name: Install Alpine build tools
run: apk add --no-cache python make git gcc g++
run: apk add --no-cache ${{ matrix.python }} make git gcc g++

- uses: actions/checkout@v2

Expand Down

0 comments on commit cfcbb2c

Please sign in to comment.