@@ -43,24 +43,13 @@ jobs:
43
43
strategy :
44
44
fail-fast : false
45
45
matrix :
46
- # TODO(chuck): FIX ME!
47
- # os: [ubuntu-latest, macos-latest]
48
- # module: [rules_haskell, rules_haskell_nix, rules_haskell_tests]
49
- # DEBUG BEGIN
50
- os : [macos-latest]
51
- module : [rules_haskell_tests]
52
- # DEBUG END
53
- # TODO(chuck): FIX ME!
54
- # bzlmod: [true, false]
55
- # ghc:
56
- # - 9.2.8
57
- # - 9.4.6
58
- # - 9.6.2
59
- # DEBUG BEGIN
60
- bzlmod : [true]
46
+ os : [ubuntu-latest, macos-latest]
47
+ module : [rules_haskell, rules_haskell_nix, rules_haskell_tests]
48
+ bzlmod : [true, false]
61
49
ghc :
62
50
- 9.2.8
63
- # DEBUG END
51
+ - 9.4.6
52
+ - 9.6.2
64
53
exclude :
65
54
- module : rules_haskell_nix
66
55
@@ -110,10 +99,6 @@ jobs:
110
99
EOF
111
100
cp .bazelrc.local rules_haskell_nix
112
101
cp .bazelrc.local rules_haskell_tests
113
- # DEBUG BEGIN
114
- - name : Setup tmate session
115
- uses : mxschmitt/action-tmate@v3
116
- # DEBUG END
117
102
- name : Build & test - rules_haskell
118
103
if : matrix.module == 'rules_haskell'
119
104
uses : tweag/run-nix-shell@v0
@@ -136,9 +121,6 @@ jobs:
136
121
with :
137
122
options : ${{ env.NIX_SHELL_ARGS }}
138
123
working-directory : rules_haskell_tests
139
- # DEBUG BEGIN
140
- # pure: false
141
- # DEBUG END
142
124
run : |
143
125
# XXX run start script `--with-bzlmod=true` when supported
144
126
if ! ${{ matrix.bzlmod }}; then
@@ -148,19 +130,7 @@ jobs:
148
130
# Shutdown Bazel to free up memory
149
131
# https://github.com/tweag/rules_haskell/issues/2089.
150
132
bazel shutdown
151
- # # DEBUG BEGIN
152
- # echo >&2 "CHUCK BEFORE"
153
- # # top -l 1 -s 0 -o mem | head -n 25 >&2
154
- # top -l 1 -s 0 -o mem >&2
155
- # echo >&2 "run-tests"
156
- # # DEBUG END
157
133
./bazel-ci-bin/tests/run-tests
158
- # ./bazel-ci-bin/tests/run-tests || true
159
- # # DEBUG BEGIN
160
- # echo >&2 "CHUCK AFTER"
161
- # # top -l 1 -s 0 -o mem | head -n 25 >&2
162
- # top -l 1 -s 0 -o mem >&2
163
- # # DEBUG END
164
134
bazel coverage //...
165
135
166
136
test-bindist :
0 commit comments