Skip to content

Commit

Permalink
Github Actions: execute tests with -N flag
Browse files Browse the repository at this point in the history
  • Loading branch information
coot committed Aug 4, 2023
1 parent 108fe32 commit e7bd2c0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,26 +102,26 @@ jobs:
# Test network packages

- name: ntp-client [test]
run: cabal run ntp-client:test
run: cabal run ntp-client:test -- +RTS -N -RTS

- name: network-mux [test]
run: cabal run network-mux:test
run: cabal run network-mux:test -- +RTS -N -RTS

- name: ourobors-network-testing [test]
run: cabal run ouroboros-network-testing:test
run: cabal run ouroboros-network-testing:test -- +RTS -N -RTS

- name: ourobors-network-framework [test]
run: cabal run ouroboros-network-framework:test
run: cabal run ouroboros-network-framework:test -- +RTS -N -RTS

- name: ouroboros-network-protocols [test]
run: cabal run ouroboros-network-protocols:test
run: cabal run ouroboros-network-protocols:test -- +RTS -N -RTS

# We don't run cddl in GitHub actions (only on Hydra).
# - name: ouroboros-network-protocols [cddl]
# run: cabal run ouroboros-network-protocols-test:cddl

- name: ouroboros-network [test]
run: cabal run ouroboros-network:test
run: cabal run ouroboros-network:test -- +RTS -N -RTS

# Uncomment the following back in for debugging. Remember to launch a `pwsh` from
# the tmux session to debug `pwsh` issues. And be reminded that the `/msys2` and
Expand Down

0 comments on commit e7bd2c0

Please sign in to comment.