Skip to content
Snippets Groups Projects
Unverified Commit 95f3245d authored by mergify[bot]'s avatar mergify[bot] Committed by GitHub
Browse files

Merge pull request #8445 from haskell/andreabedini-patch-2

Make validate.sh show the output of cabal-plan
parents ba4a7e49 7b311b86
No related branches found
No related tags found
No related merge requests found
......@@ -262,6 +262,12 @@ jobs:
ghc-version: ${{ matrix.ghc }}
cabal-version: latest # default, we are not using it in this job
- name: Install cabal-plan
run: |
cd $(mktemp -d)
cabal install cabal-plan --constraint='cabal-plan +exe'
echo "$HOME/.cabal/bin" >> $GITHUB_PATH
- name: Download cabal executable from workflow artifacts
uses: actions/download-artifact@v2
with:
......
......@@ -369,6 +369,7 @@ step_time_summary() {
step_build() {
print_header "build"
timed $CABALNEWBUILD $TARGETS --dry-run || exit 1
$CABALPLAN topo --builddir=$BUILDDIR || exit 1
timed $CABALNEWBUILD $TARGETS || exit 1
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment