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 42764b3 commit a3ea0c4Copy full SHA for a3ea0c4
.github/workflows/test.yml
@@ -17,11 +17,14 @@ jobs:
17
- name: Build for Windows
18
if: ${{ matrix.target == 'windows' }}
19
run: .\make.bat
20
- - name: Install ninja
21
- if: ${{ matrix.target == 'linux' || matrix.target == 'darwin' }}
+ - name: Build for Linux
+ if: ${{ matrix.target == 'linux' }}
22
run: |
23
- apk update
24
- apk add git ninja bash build-base nodejs linux-headers
25
- - name: Build for Non-Windows
26
27
- run: ./make.sh
+ sudo apt update
+ sudo apt install ninja-build
+ ./make.sh
+ - name: Build for macOS
+ if: ${{ matrix.target == 'darwin' }}
28
+ run: |
29
+ brew install ninja
30
0 commit comments