Skip to content

Commit df960e8

Browse files
committed
ci: fix deps installation
1 parent 9ce3228 commit df960e8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
- name: install llvm
115115
if: ${{ matrix.os == 'macos-latest' }}
116116
run: |
117-
brew update && brew install llvm protobuf
117+
brew install llvm protobuf
118118
119119
- name: build
120120
run: |
@@ -148,7 +148,7 @@ jobs:
148148
- name: install toolchain
149149
run: |
150150
cargo install cbindgen
151-
brew update && brew install llvm unzip protobuf
151+
brew install llvm unzip protobuf
152152
153153
- name: build
154154
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
- name: install llvm
9191
if: ${{ matrix.os == 'macos-latest' }}
9292
run: |
93-
brew update && brew install llvm protobuf
93+
brew install llvm protobuf
9494
9595
- name: build
9696
run: |
@@ -124,7 +124,7 @@ jobs:
124124
- name: install toolchain
125125
run: |
126126
cargo install cbindgen
127-
brew update && brew install llvm unzip protobuf
127+
brew install llvm unzip protobuf
128128
129129
- name: build
130130
run: |

0 commit comments

Comments
 (0)