Skip to content

Commit

Permalink
Add some diagnostics for homebrew
Browse files Browse the repository at this point in the history
  • Loading branch information
cschwan committed Apr 1, 2024
1 parent ca7d198 commit 71eb9e7
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,14 @@ jobs:
brew tap davidchall/hep
# install LHAPDF
brew install lhapdf
# install APPLgrid
brew install applgrid
# install APPLgrid's sources - TODO: find a better version independent way to do this
wget 'https://applgrid.hepforge.org/downloads/applgrid-1.6.35.tgz' -O- | tar xzf - -C /tmp
export APPL_IGRID_DIR=/tmp/applgrid-1.6.35/src
# install APPLgrid's dependencies
brew install --only-dependencies applgrid
export HOMEBREW_TEMP="$(pwd)"/tmp
mkdir -p ${HOMEBREW_TEMP}
echo "HOMEBREW_TEMP = ${HOMEBREW_TEMP}"
brew install --build-from-source applgrid
find ${HOMEBREW_TEMP}
export APPL_IGRID_DIR=${HOMEBREW_TEMP}/applgrid-1.6.35/src
# install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-host=${{ matrix.target }}
# build the CLI
Expand Down

0 comments on commit 71eb9e7

Please sign in to comment.