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 c932d99 commit 756b537Copy full SHA for 756b537
.github/workflows/flags.yml
@@ -69,14 +69,15 @@ jobs:
69
ghc: ${{ matrix.ghc }}
70
os: ${{ runner.os }}
71
72
- - name: Build `hls-graph` with flags
73
- run: cabal v2-build hls-graph --flags="embed-files stm-stats pedantic"
74
-
75
- - name: Build `ghcide` with flags
76
- run: cabal v2-build ghcide --flags="ghc-patched-unboxed-bytecode test-exe executable bench-exe ekg"
+ - name: Configue extra flags for some components
+ run: |
+ cabal configure \
+ --constraint "hls-graph +embed-files +stm-stats +pedantic" \
+ --constraint "ghcide +ekg +executable +pedantic +test-exe"
77
+ cat cabal.project.local
78
79
- name: Build with pedantic (-WError)
- run: cabal v2-build --flags="pedantic"
80
+ run: cabal v2-build --flags=pedantic
81
82
flags_post_job:
83
if: always()
0 commit comments