-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#591] Remove unnecessary tezos-client dependency
Problem: Tezos client has a libffi dependency which it actually does not use. It needs to be removed Solution: Removed unnecessary dependency, check that bottles build without it
- Loading branch information
1 parent
15fadba
commit 78dcab1
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Build BigSur bottles | ||
on: | ||
push: | ||
branches: | ||
- PruStephan/Remove_unnecessary_tezos_client_deps | ||
jobs: | ||
build-bottles: | ||
name: Install and test binaries | ||
runs-on: macos-11 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Build tezos-client | ||
run: | | ||
brew install --formula ./Formula/tezos-sapling-params.rb | ||
brew install $(brew deps --include-build --formula "./Formula/tezos-client.rb") | ||
brew install --formula --build-bottle "./Formula/tezos-client.rb" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters