We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 998534f commit a064ed1Copy full SHA for a064ed1
.github/workflows/build.yml
@@ -90,8 +90,8 @@ jobs:
90
- name: Build server
91
# Try building it twice in case of flakey builds on Windows
92
run: |
93
- cabal build exe:hls -O2 $LINUX_CABAL_ARGS || \
94
- cabal build exe:hls -O2 $LINUX_CABAL_ARGS -j1
+ cabal build --disable-tests exe:hls -O2 $LINUX_CABAL_ARGS || \
+ cabal build --disable-tests exe:hls -O2 $LINUX_CABAL_ARGS -j1
95
96
- name: Compress server binary
97
id: compress_server_binary
@@ -131,7 +131,7 @@ jobs:
131
132
- name: Build wrapper
133
if: matrix.ghc == '8.10.7'
134
- run: cabal build exe:hls-wrapper -O2 $LINUX_CABAL_ARGS
+ run: cabal build --disable-tests exe:hls-wrapper -O2 $LINUX_CABAL_ARGS
135
136
- name: Compress wrapper binary
137
0 commit comments