We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4beadad commit 8039f96Copy full SHA for 8039f96
.github/workflows/build.yml
@@ -46,7 +46,12 @@ jobs:
46
run: |
47
apk update
48
apk add git ninja bash build-base nodejs linux-headers
49
- alias sudo=''
+
50
+ - name: Prepare for Linux
51
+ if: ${{ matrix.target == 'linux' && matrix.libc != 'musl' }}
52
+ run: |
53
+ sudo apt update
54
+ sudo apt install ninja-build
55
56
- uses: actions/checkout@v4
57
with:
@@ -59,8 +64,6 @@ jobs:
59
64
- name: Build for Linux
60
65
if: ${{ matrix.target == 'linux' }}
61
66
62
- sudo apt update
63
- sudo apt install ninja-build
67
./make.sh ${{ matrix.platform }}
68
69
- name: Build for macOS
0 commit comments