Skip to content

Commit e7810fd

Browse files
committed
rename
1 parent 9d6d9e4 commit e7810fd

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -252,12 +252,12 @@ jobs:
252252
- name: prepare for constraint sets
253253
run: |
254254
rm -f cabal.project.local
255-
- name: constraint set no-pkg-config
255+
- name: constraint set pkg-config
256256
run: |
257-
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='postgresql-libpq -use-pkg-config' all --dry-run
257+
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='postgresql-libpq +use-pkg-config' all --dry-run
258258
cabal-plan topo | sort
259-
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='postgresql-libpq -use-pkg-config' --dependencies-only -j2 all
260-
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='postgresql-libpq -use-pkg-config' all
259+
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='postgresql-libpq +use-pkg-config' --dependencies-only -j2 all
260+
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks --constraint='postgresql-libpq +use-pkg-config' all
261261
- name: save cache
262262
uses: actions/cache/save@v4
263263
if: always()

cabal.haskell-ci

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ postgresql: True
55
test-output-direct: False
66
haddock-components: libs
77

8-
constraint-set no-pkg-config
9-
constraints: postgresql-libpq -use-pkg-config
8+
constraint-set pkg-config
9+
constraints: postgresql-libpq +use-pkg-config

0 commit comments

Comments
 (0)