Skip to content

Commit

Permalink
Re-enable start script testing on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
aherrmann committed Mar 12, 2021
1 parent 84b532e commit 5f1995d
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,11 @@ jobs:
nix-shell --arg docTools false --pure --run .ci/check-bazel-version
- name: Build & test
run: |
# XXX 2019-01-22 Disable start script checking on Darwin
# due to a clash between binutils and clang.
[[ ${{ matrix.os }} != macos ]] &&
nix-shell --arg docTools false --pure --run \
'./tests/run-start-script.sh --use-nix'
nix-shell --arg docTools false --pure --run '
bazel build //tests:run-tests &&
./bazel-ci-bin/tests/run-tests &&
set -euo pipefail
./tests/run-start-script.sh --use-nix
bazel build //tests:run-tests
./bazel-ci-bin/tests/run-tests
bazel coverage //tests/...
'
test-bindist:
Expand Down Expand Up @@ -97,10 +94,7 @@ jobs:
run: |
export PATH=$HOME/bazel:$PATH
[[ ${{ matrix.os }} == macos ]] && export BAZEL_USE_CPP_ONLY_TOOLCHAIN=1
# XXX 2019-01-22 Disable start script checking on Darwin
# due to a clash between binutils and clang.
[[ ${{ matrix.os }} != macos ]] && \
./tests/run-start-script.sh --use-bindists
./tests/run-start-script.sh --use-bindists
bazel test //tests/...
# Test stack_snapshot pinning
# NOTE keep in sync with tests/RunTests.hs
Expand Down

0 comments on commit 5f1995d

Please sign in to comment.