Skip to content

Commit

Permalink
install missing autoconf in macos builds
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed Dec 13, 2023
1 parent 6f27700 commit 24087e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos-11.7-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: |
cp assembly/native/build-macos-shared.sh .
chmod +x build-macos-shared.sh
sudo ./build-macos-shared.sh -t -a
./build-macos-shared.sh -t -a
- name: Upload artifacts
uses: actions/upload-artifact@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-12.6-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: |
cp assembly/native/build-macos-shared.sh .
chmod +x build-macos-shared.sh
sudo ./build-macos-shared.sh -t -a
./build-macos-shared.sh -t -a
- name: Upload artifacts
uses: actions/upload-artifact@master
Expand Down
2 changes: 1 addition & 1 deletion assembly/native/build-macos-shared.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ else
fi

export NONINTERACTIVE=1
brew install ninja libsodium libmicrohttpd pkg-config automake libtool
brew install ninja libsodium libmicrohttpd pkg-config automake libtool autoconf

if [ ! -d "secp256k1" ]; then
git clone https://github.com/bitcoin-core/secp256k1.git
Expand Down

0 comments on commit 24087e4

Please sign in to comment.