Skip to content

Commit

Permalink
chore: build avm transpiler if we are on mac (#5039)
Browse files Browse the repository at this point in the history
We don't cache avm transpiler builds for mac. so we cannot use the
cache.
  • Loading branch information
just-mitch authored Mar 7, 2024
1 parent fe3190e commit c2966b9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions avm-transpiler/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ if [ -n "$CMD" ]; then
fi

# Attempt to just pull artefacts from CI and exit on success.
[ -n "${USE_CACHE:-}" ] && ./bootstrap_cache.sh && exit
if [[ "$OSTYPE" != "darwin"* ]] && [ -n "${USE_CACHE:-}" ]; then
./bootstrap_cache.sh && exit
fi

./scripts/bootstrap_native.sh
./scripts/bootstrap_native.sh

0 comments on commit c2966b9

Please sign in to comment.