Skip to content

Commit

Permalink
试试
Browse files Browse the repository at this point in the history
  • Loading branch information
sumneko committed May 14, 2024
1 parent 42764b3 commit a3ea0c4
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ jobs:
- name: Build for Windows
if: ${{ matrix.target == 'windows' }}
run: .\make.bat
- name: Install ninja
if: ${{ matrix.target == 'linux' || matrix.target == 'darwin' }}
- name: Build for Linux
if: ${{ matrix.target == 'linux' }}
run: |
apk update
apk add git ninja bash build-base nodejs linux-headers
- name: Build for Non-Windows
if: ${{ matrix.target == 'linux' || matrix.target == 'darwin' }}
run: ./make.sh
sudo apt update
sudo apt install ninja-build
./make.sh
- name: Build for macOS
if: ${{ matrix.target == 'darwin' }}
run: |
brew install ninja
./make.sh

0 comments on commit a3ea0c4

Please sign in to comment.