We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6303f5 commit 0df9083Copy full SHA for 0df9083
.github/workflows/build.yml
@@ -87,8 +87,8 @@ jobs:
87
- name: Build server
88
# Try building it twice in case of flakey builds on Windows
89
run: |
90
- cabal build exe:hls -O2 $LINUX_CABAL_ARGS || \
91
- 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
92
93
- name: Compress server binary
94
id: compress_server_binary
@@ -128,7 +128,7 @@ jobs:
128
129
- name: Build wrapper
130
if: matrix.ghc == '8.10.7'
131
- run: cabal build exe:hls-wrapper -O2 $LINUX_CABAL_ARGS
+ run: cabal build --disable-tests exe:hls-wrapper -O2 $LINUX_CABAL_ARGS
132
133
- name: Compress wrapper binary
134
0 commit comments