Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

chore: Use default Apline version from docker-node #3121

Merged
merged 3 commits into from
Jun 2, 2021
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/workflows/alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,21 @@ jobs:

include:
- node: 12
alpine: "3.9"
alpine: "3.11"
python: python2
- node: 14
alpine: "3.10"
alpine: "3.11"
python: python3
- node: 15
alpine: "3.10"
- node: 16
alpine: "3.11"
python: python3
- node: 16
alpine: "3.13"
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