Skip to content

Commit 3c3de7c

Browse files
committed
Restrict number of tests. Dump memory info.
1 parent 8918cb6 commit 3c3de7c

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/workflow.yaml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,11 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
os: [ubuntu-latest, macos-latest]
47-
module: [rules_haskell, rules_haskell_nix, rules_haskell_tests]
46+
# TODO(chuck): FIX ME!
47+
# os: [ubuntu-latest, macos-latest]
48+
# module: [rules_haskell, rules_haskell_nix, rules_haskell_tests]
49+
os: [macos-latest]
50+
module: [rules_haskell_tests]
4851
bzlmod: [true, false]
4952
ghc:
5053
- 9.2.8
@@ -130,7 +133,15 @@ jobs:
130133
# Shutdown Bazel to free up memory
131134
# https://github.com/tweag/rules_haskell/issues/2089.
132135
bazel shutdown
136+
# DEBUG BEGIN
137+
echo >&2 "CHUCK BEFORE"
138+
top -l 1 -s 0 -o mem | head -n 25 >&2
139+
# DEBUG END
133140
./bazel-ci-bin/tests/run-tests
141+
# DEBUG BEGIN
142+
echo >&2 "CHUCK AFTER"
143+
top -l 1 -s 0 -o mem | head -n 25 >&2
144+
# DEBUG END
134145
bazel coverage //...
135146
136147
test-bindist:

0 commit comments

Comments
 (0)