Skip to content

Commit

Permalink
explicit add of installed brew cellar pacakges to path
Browse files Browse the repository at this point in the history
Signed-off-by: garyschulte <garyschulte@gmail.com>
  • Loading branch information
garyschulte committed Jul 5, 2023
1 parent 520ff8a commit 44fb9d1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ jobs:
fi
# secp256k1 dependencies
brew install autoconf automake libtool
export PATH=$HOMEBREW_CELLAR/autoconf/*/bin/:$PATH
export PATH=$HOMEBREW_CELLAR/automake/*/bin/:$PATH
export PATH=$HOMEBREW_CELLAR/libtool/*/bin/:$PATH
# gnark dependencies
brew install go@1.20 || true
export PATH=$HOMEBREW_CELLAR/Cellar/go/1.20.2/bin:$PATH
Expand Down Expand Up @@ -192,7 +195,10 @@ jobs:
export PATH=$HOMEBREW_PREFIX/bin:$PATH
fi
# secp256k1, gnark dependencies
brew install autoconf automake libtool
brew install autoconf automake libtool
export PATH=$HOMEBREW_CELLAR/autoconf/*/bin/:$PATH
export PATH=$HOMEBREW_CELLAR/automake/*/bin/:$PATH
export PATH=$HOMEBREW_CELLAR/libtool/*/bin/:$PATH
# gnark dependencies
brew install go@1.20 || true
export PATH=$HOMEBREW_CELLAR/go/1.20.2/bin:$PATH
Expand Down

0 comments on commit 44fb9d1

Please sign in to comment.