Skip to content

Commit

Permalink
Fix missing llvm in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sagudev committed May 2, 2022
1 parent 9d92bb4 commit 6bf5888
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
with:
python-version: "3.x"

- name: Install valgrind
run: sudo apt update && sudo apt install -y valgrind
- name: Install valgrind and llvm
run: sudo apt update && sudo apt install -y valgrind libclang-dev

- uses: dart-lang/setup-dart@v1

Expand Down Expand Up @@ -312,6 +312,8 @@ jobs:
- uses: dart-lang/setup-dart@v1
- name: Install ffigen
run: dart pub global activate ffigen
- name: Install llvm dependency (Linux)
run: sudo apt update && sudo apt-get install -y libclang-dev
- name: Build codegen
working-directory: ./frb_codegen
run: cargo build --verbose
Expand Down Expand Up @@ -364,6 +366,8 @@ jobs:
- uses: dart-lang/setup-dart@v1
- name: Install ffigen
run: dart pub global activate ffigen
- name: Install llvm dependency (Linux)
run: sudo apt update && sudo apt-get install -y libclang-dev

- name: Run fmt for codegen
uses: actions-rs/cargo@v1
Expand Down

0 comments on commit 6bf5888

Please sign in to comment.