Skip to content

Commit

Permalink
fixup! Add solver Hackage benchmarks to GitHub Actions (fixes haskell…
Browse files Browse the repository at this point in the history
  • Loading branch information
grayjay committed Jan 22, 2024
1 parent 1d2d6b7 commit ce54499
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,10 +208,16 @@ jobs:
run: sh validate.sh $FLAGS -s cli-suite

- name: Validate solver-benchmarks-tests
run: sh validate.sh $FLAGS -s solver-benchmarks-tests
run: |
if [[ ${{ matrix.ghc }} == ${{ env.GHC_FOR_SOLVER_BENCHMARKS }} ]]; then
sh validate.sh $FLAGS -s solver-benchmarks-tests
fi
- name: Validate solver-benchmarks-run
run: sh validate.sh $FLAGS -s solver-benchmarks-run
run: |
if [[ ${{ matrix.ghc }} == ${{ env.GHC_FOR_SOLVER_BENCHMARKS }} ]]; then
sh validate.sh $FLAGS -s solver-benchmarks-run
fi
validate-old-ghcs:
name: Validate old ghcs ${{ matrix.extra-ghc }}
Expand Down

0 comments on commit ce54499

Please sign in to comment.