Skip to content

Commit 2a6d1a3

Browse files
committed
Wibble
1 parent 06b876c commit 2a6d1a3

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

.github/scripts/test.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ cabal --store-dir=store update
2626

2727
# TODO: we want to avoid building here... we should just
2828
# be using the previously built 'cabal-tests' binary
29-
cabal --store-dir=store run ${ADD_CABAL_ARGS} cabal-testsuite:cabal-tests -- \
29+
cabal --store-dir=store run \
30+
--disable-profiling \
31+
--enable-executable-stripping \
32+
--project-file=cabal.release.project \
33+
${ADD_CABAL_ARGS} \
34+
cabal-testsuite:cabal-tests -- \
3035
--with-cabal "$(pwd)/out/cabal" \
3136
--intree-cabal-lib "$(pwd)" \
3237
--test-tmp "$(pwd)/testdb" \

.github/workflows/release.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -657,6 +657,7 @@ jobs:
657657
- uses: actions/download-artifact@v4
658658
with:
659659
name: artifacts-${{ matrix.platform.ARTIFACT }}
660+
path: out
660661

661662
- name: Run test
662663
run: |
@@ -721,6 +722,7 @@ jobs:
721722
- uses: actions/download-artifact@v4
722723
with:
723724
name: artifacts-${{ matrix.ARTIFACT }}
725+
path: out
724726

725727
- if: matrix.DISTRO == 'Debian'
726728
uses: docker://hasufell/arm64v8-debian-haskell:10
@@ -758,6 +760,7 @@ jobs:
758760
- uses: actions/download-artifact@v4
759761
with:
760762
name: artifacts-${{ env.ARTIFACT }}
763+
path: out
761764

762765
- uses: actions/download-artifact@v4
763766
with:
@@ -793,6 +796,7 @@ jobs:
793796
- uses: actions/download-artifact@v4
794797
with:
795798
name: artifacts-${{ env.ARTIFACT }}
799+
path: out
796800

797801
- uses: actions/download-artifact@v4
798802
with:
@@ -835,6 +839,7 @@ jobs:
835839
- uses: actions/download-artifact@v4
836840
with:
837841
name: artifacts-${{ env.ARTIFACT }}
842+
path: out
838843

839844
- uses: actions/download-artifact@v4
840845
with:
@@ -873,6 +878,7 @@ jobs:
873878
- uses: actions/download-artifact@v4
874879
with:
875880
name: artifacts-${{ env.ARTIFACT }}
881+
path: out
876882

877883
- uses: actions/download-artifact@v4
878884
with:
@@ -924,6 +930,7 @@ jobs:
924930
with:
925931
pattern: artifacts-*
926932
merge-multiple: true
933+
path: out
927934

928935
- name: Install requirements
929936
run: |

cabal.release.project

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import: project-cabal/constraints.config
22
import: project-cabal/pkgs/cabal.config
33
import: project-cabal/pkgs/install.config
44
import: project-cabal/pkgs/tests.config
5+
import: project-cabal/pkgs/integration-tests.config
56

67
index-state: hackage.haskell.org 2025-06-27T20:43:14Z
78

0 commit comments

Comments
 (0)