Skip to content

Commit

Permalink
Don't use a pure shell to prefetch
Browse files Browse the repository at this point in the history
  • Loading branch information
facundominguez committed Nov 25, 2023
1 parent 5b1285e commit 8f39838
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,10 @@ jobs:
- name: Prefetch Stackage snapshot
shell: bash
# Pure shells don't work in macos when /usr/bin/security is used for SSL checks
run: |
set -e -o pipefail
nix-shell --pure --run "cmd='bazel fetch @stackage//... $BAZEL_ARGS'; \$cmd || \$cmd || \$cmd"
nix-shell --run "cmd='bazel fetch @stackage//... $BAZEL_ARGS'; \$cmd || \$cmd || \$cmd"
- name: Build all
shell: bash
Expand Down

0 comments on commit 8f39838

Please sign in to comment.