Skip to content

Commit

Permalink
ci: fixed protobuf and abseil versions (#2596)
Browse files Browse the repository at this point in the history
* ci: fixed protobuf and abseil versions

* ci: ignore dependencies
  • Loading branch information
wasphin committed Apr 9, 2024
1 parent 498c3e1 commit d7eca39
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,12 @@ jobs:

- name: install dependences
run: |
brew install protobuf openssl gnu-getopt coreutils gflags leveldb
brew install openssl gnu-getopt coreutils gflags leveldb
# abseil 20230125.3
curl -o abseil.rb https://github.com/Homebrew/homebrew-core/1e04597501b3096952608efcb13301119a830b35/Formula/abseil.rb
# protobuf 22.5
curl -o protobuf.rb https://github.com/Homebrew/homebrew-core/1e04597501b3096952608efcb13301119a830b35/Formula/protobuf.rb
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install --formula --ignore-dependencies ./abseil.rb ./protobuf.rb
- name: config_brpc
run: |
Expand All @@ -85,7 +90,12 @@ jobs:

- name: install dependences
run: |
brew install protobuf openssl gflags leveldb
brew install openssl gflags leveldb
# abseil 20230125.3
curl -o abseil.rb https://github.com/Homebrew/homebrew-core/1e04597501b3096952608efcb13301119a830b35/Formula/abseil.rb
# protobuf 22.5
curl -o protobuf.rb https://github.com/Homebrew/homebrew-core/1e04597501b3096952608efcb13301119a830b35/Formula/protobuf.rb
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install --formula --ignore-dependencies ./abseil.rb ./protobuf.rb
- name: cmake
run: |
Expand Down

0 comments on commit d7eca39

Please sign in to comment.