Skip to content

Commit

Permalink
ci: fix deps installation
Browse files Browse the repository at this point in the history
  • Loading branch information
eycorsican committed Jun 16, 2023
1 parent 9ce3228 commit df960e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
- name: install llvm
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew update && brew install llvm protobuf
brew install llvm protobuf
- name: build
run: |
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
- name: install toolchain
run: |
cargo install cbindgen
brew update && brew install llvm unzip protobuf
brew install llvm unzip protobuf
- name: build
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- name: install llvm
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew update && brew install llvm protobuf
brew install llvm protobuf
- name: build
run: |
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- name: install toolchain
run: |
cargo install cbindgen
brew update && brew install llvm unzip protobuf
brew install llvm unzip protobuf
- name: build
run: |
Expand Down

0 comments on commit df960e8

Please sign in to comment.