File tree 4 files changed +3
-7
lines changed
ghcide/src/Development/IDE/Core
4 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ jobs:
159
159
ghcide/bench-results/**/*.eventlog
160
160
ghcide/bench-results/**/*.hp
161
161
162
- post_job :
162
+ bench_post_job :
163
163
if : always()
164
164
runs-on : ubuntu-latest
165
165
needs : [pre_job, bench_init, bench_example]
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ jobs:
107
107
if : ${{ env.HAS_TOKEN == 'true' }}
108
108
run : nix path-info --json | jq -r '.[].path' | cachix push haskell-language-server
109
109
110
- post_job :
110
+ nix_post_job :
111
111
if : always()
112
112
runs-on : ubuntu-latest
113
113
needs : [pre_job, develop, build]
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ jobs:
224
224
name : Test hls-hlint-plugin test suite
225
225
run : cabal test hls-hlint-plugin --test-options="-j1 --rerun-update" || cabal test hls-hlint-plugin --test-options="-j1 --rerun" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test hls-hlint-plugin --test-options="-j1 --rerun"
226
226
227
- post_job :
227
+ test_post_job :
228
228
if : always()
229
229
runs-on : ubuntu-latest
230
230
needs : [pre_job, test]
Original file line number Diff line number Diff line change @@ -217,10 +217,6 @@ getParsedModuleRule =
217
217
let dflags = ms_hspp_opts ms
218
218
mainParse = getParsedModuleDefinition hsc opt file ms
219
219
reset_ms pm = pm { pm_mod_summary = ms' }
220
-
221
- -- Parse again (if necessary) to capture Haddock parse errors
222
- -- We no longer need to parse again if GHC version is above 9.0. https://github.com/haskell/haskell-language-server/issues/1892
223
- res@ (_,pmod) <- if Compat. ghcVersion >= Compat. GHC90 || gopt Opt_Haddock dflags
224
220
res@ (_,pmod) <- if gopt Opt_Haddock dflags
225
221
then
226
222
liftIO $ (fmap . fmap . fmap ) reset_ms mainParse
You can’t perform that action at this time.
0 commit comments