Skip to content

Commit

Permalink
Fix Github Actions to use llvm-ar
Browse files Browse the repository at this point in the history
  • Loading branch information
tyfkda committed Feb 28, 2024
1 parent f75a601 commit 04b9540
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/deploywcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Setup llvm-ar
run: sudo apt install llvm-dev
- name: Install NPM packages
run: npm ci
- name: Build release
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
run: make test-gen2

- name: setup
run: npm ci
run: |
npm ci
sudo apt update && sudo apt install llvm-dev
- name: make wcc
run: make -j8 wcc
- name: test wcc
Expand Down

0 comments on commit 04b9540

Please sign in to comment.