Skip to content

Commit 4818925

Browse files
committed
Prepare void linux container for node-based actions
1 parent 4a1ec12 commit 4818925

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ jobs:
2727
image: ${{ matrix.container }}
2828

2929
steps:
30+
- name: Prepare container
31+
run: |
32+
if [[ "${{ matrix.container }}" == *"void-linux"* ]]; then
33+
xbps-install -Syu xbps
34+
xbps-install -yu
35+
# node-based actions require libstdc++.so.6
36+
xbps-install -Sy libstdc++ bash git
37+
fi
38+
3039
- name: Checkout code
3140
# cannot use v4 yet because of https://github.com/actions/checkout/issues/1487
3241
uses: actions/checkout@v3

0 commit comments

Comments
 (0)