Skip to content

Commit

Permalink
fixup! Allow debug to startup lldb on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcgilchrist committed Jul 2, 2024
1 parent 9980b46 commit 6fc4bcc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,11 @@ jobs:
persist-credentials: false
- name: OS Dependencies
if: runner.os == 'macOS'
run: brew install parallel
run: |
brew install parallel
# Allows starting up lldb from a remote terminal
sudo DevToolsSecurity --enable
- name: configure tree
run: |
CONFIG_ARG='${{ matrix.config_arg }}' MAKE_ARG=-j bash -xe tools/ci/actions/runner.sh configure
Expand All @@ -180,7 +184,6 @@ jobs:
OCAMLRUNPARAM: v=0,V=1
USE_RUNTIME: d
run: |
sudo DevToolsSecurity --enable
for dir in $PARALLEL_TESTS; do \
bash -cxe "SHOW_TIMINGS=1 tools/ci/actions/runner.sh test_prefix $dir"; \
done
Expand Down

0 comments on commit 6fc4bcc

Please sign in to comment.