From 061717f6c7ab0cc00f1455279d28f58cb10910e8 Mon Sep 17 00:00:00 2001 From: konsumlamm Date: Fri, 17 Sep 2021 02:47:36 +0200 Subject: [PATCH 1/5] Test GHC 7.10 in CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 28096f7..cee9015 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0'] + ghc: ['7.10', '8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0'] include: - os: windows-latest ghc: 'latest' From 4c926d9c3b7227b0de3877e7016297643ba37026 Mon Sep 17 00:00:00 2001 From: konsumlamm Date: Fri, 24 Dec 2021 01:33:40 +0100 Subject: [PATCH 2/5] Run test-qc directly in CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cee9015..c3e3d20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: - name: Build run: cabal build - name: Test - run: cabal test + run: cabal run test-qc - name: Bench run: cabal bench --benchmark-option=-l - name: Haddock From 4fa79e341beeb0ef966e160dc4f61fc888bbeff7 Mon Sep 17 00:00:00 2001 From: konsumlamm Date: Fri, 24 Dec 2021 02:03:42 +0100 Subject: [PATCH 3/5] `cabal configure --enable-tests` in CI --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c3e3d20..8b12fc6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,9 @@ jobs: - name: Build run: cabal build - name: Test - run: cabal run test-qc + run: | + cabal configure --enable-tests + cabal run test-qc - name: Bench run: cabal bench --benchmark-option=-l - name: Haddock From 8b96fcf51eab04c84916d72b775c8ba2436682e9 Mon Sep 17 00:00:00 2001 From: konsumlamm Date: Fri, 24 Dec 2021 02:16:49 +0100 Subject: [PATCH 4/5] Temporarily disable CI for 7.10 (pending #329) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b12fc6..1e1b25b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - ghc: ['7.10', '8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0'] + ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0'] include: - os: windows-latest ghc: 'latest' From ddad6ed6fe6291f5cd94d7b001cca2816c529a26 Mon Sep 17 00:00:00 2001 From: konsumlamm Date: Fri, 15 Apr 2022 16:58:06 +0200 Subject: [PATCH 5/5] Enable CI for 7.10 & 9.2 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e1b25b..1b42405 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0'] + ghc: ['7.10', '8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2'] include: - os: windows-latest ghc: 'latest'