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 f7b8753 commit e03ca42Copy full SHA for e03ca42
.github/workflows/check-release-builds.yml
@@ -110,6 +110,9 @@ jobs:
110
cabal build all \
111
--project-file="cabal.project.temp" \
112
--only-dependencies
113
+ cabal build ./scripts/cabal-list-public-library-targets.hs \
114
+ --project-file="cabal.project.temp" \
115
+ --only-dependencies
116
117
- name: 💾 Save Cabal dependencies
118
uses: actions/cache/save@v4
@@ -123,4 +126,4 @@ jobs:
123
126
run: |
124
127
./scripts/cabal-list-public-library-targets.hs '${{ env.release-build-target }}' | \
125
128
tail -n +2 | \
- xargs -L 1 sh -c 'echo "$0" && cabal build --project-file=cabal.project.temp "$0"'
129
+ xargs -d '\n' -L 1 sh -c 'echo "$0" && cabal build --project-file=cabal.project.temp "$0"'
0 commit comments