Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Shimuuar committed May 5, 2024
1 parent 41b8a84 commit 9577e73
Showing 1 changed file with 37 additions and 26 deletions.
63 changes: 37 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,29 +18,28 @@ jobs:
matrix:
include:
### -- Linux --
- { cabal: "3.4", os: ubuntu-latest, ghc: "7.10.3" }
- { cabal: "3.4", os: ubuntu-latest, ghc: "8.0.2" }
- { cabal: "3.4", os: ubuntu-latest, ghc: "8.2.2" }
- { cabal: "3.4", os: ubuntu-latest, ghc: "8.4.4" }
- { cabal: "3.4", os: ubuntu-latest, ghc: "8.6.5" }
- { cabal: "3.4", os: ubuntu-latest, ghc: "8.8.4" }
- { cabal: "3.4", os: ubuntu-latest, ghc: "8.10.7" }
- { cabal: "3.4", os: ubuntu-latest, ghc: "9.0.1" }
- { cabal: "3.6", os: ubuntu-latest, ghc: "9.2.1", skip-bench: "true" }
# - { cabal: "3.4", os: ubuntu-latest, ghc: "8.0.2" }
# - { cabal: "3.4", os: ubuntu-latest, ghc: "8.2.2" }
# - { cabal: "3.4", os: ubuntu-latest, ghc: "8.4.4" }
# - { cabal: "3.4", os: ubuntu-latest, ghc: "8.6.5" }
# - { cabal: "3.4", os: ubuntu-latest, ghc: "8.8.4" }
# - { cabal: "3.4", os: ubuntu-latest, ghc: "8.10.7" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.0.2" }
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.2.8" }
## -- Win --
- { cabal: "3.4", os: windows-latest, ghc: "8.4.4" }
- { cabal: "3.4", os: windows-latest, ghc: "8.6.5" }
- { cabal: "3.4", os: windows-latest, ghc: "8.8.4" }
- { cabal: "3.4", os: windows-latest, ghc: "8.10.7" }
- { cabal: "3.4", os: windows-latest, ghc: "9.0.1" }
- { cabal: "3.6", os: windows-latest, ghc: "9.2.1", skip-bench: "true" }
# - { cabal: "3.4", os: windows-latest, ghc: "8.4.4" }
# - { cabal: "3.4", os: windows-latest, ghc: "8.6.5" }
# - { cabal: "3.4", os: windows-latest, ghc: "8.8.4" }
# - { cabal: "3.4", os: windows-latest, ghc: "8.10.7" }
# - { cabal: "3.4", os: windows-latest, ghc: "9.0.1" }
# - { cabal: "3.6", os: windows-latest, ghc: "9.2.1", skip-bench: "true" }
# MacOS
- { cabal: "3.4", os: macOS-latest, ghc: "8.4.4" }
- { cabal: "3.4", os: macOS-latest, ghc: "8.6.5" }
- { cabal: "3.4", os: macOS-latest, ghc: "8.8.4" }
- { cabal: "3.4", os: macOS-latest, ghc: "8.10.7" }
- { cabal: "3.4", os: macOS-latest, ghc: "9.0.1" }
- { cabal: "3.6", os: macOS-latest, ghc: "9.2.1", skip-bench: "true" }
# - { cabal: "3.4", os: macOS-latest, ghc: "8.4.4" }
# - { cabal: "3.4", os: macOS-latest, ghc: "8.6.5" }
# - { cabal: "3.4", os: macOS-latest, ghc: "8.8.4" }
# - { cabal: "3.4", os: macOS-latest, ghc: "8.10.7" }
# - { cabal: "3.4", os: macOS-latest, ghc: "9.0.1" }
# - { cabal: "3.6", os: macOS-latest, ghc: "9.2.1", skip-bench: "true" }
fail-fast: false

steps:
Expand All @@ -50,21 +49,27 @@ jobs:
echo M1 ${{ matrix.ghc }}
echo M2 ${{ matrix.skip-bench }}
# ----------------
- uses: actions/checkout@v2
- uses: actions/checkout@v4
# ----------------
- uses: haskell/actions/setup@v1
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
# ----------------
- uses: actions/cache@v1
- uses: actions/cache@v3
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}--${{ github.Shah }}
# ----------------
- name: "Install PAPI"
run: |
sudo apt-get install -y libpapi-dev
echo FLAG_PAPI=-fBenchPAPI >> "$GITHUB_ENV"
if: matrix.os == 'ubuntu-latest'
# ----------------
- name: Versions
run: |
cabal -V
Expand All @@ -87,10 +92,16 @@ jobs:
- name: Build
run: |
if [ "${{ matrix.skip-test }}" == "" ]; then FLAG_TEST=--enable-test; fi
if [ "${{ matrix.skip-bench }}" == "" ]; then FLAG_BENCH=--enable-benchmarks; fi
cabal configure $FLAG_TEST $FLAG_BENCH
if [ "${{ matrix.skip-bench }}" == "" ]; then
FLAG_BENCH="--enable-benchmarks --benchmark-option=-l"
fi
cabal configure $FLAG_TEST $FLAG_BENCH --haddock-all
cabal build all --write-ghc-environment-files=always
# ----------------
- name: Test
run: |
cabal test all
# ----------------
- name: Bench
run: |
cabal bench all

0 comments on commit 9577e73

Please sign in to comment.