Skip to content

Commit cb95501

Browse files
committed
chore: bump github actions and remove old ghc versions
1 parent f8d44dc commit cb95501

3 files changed

Lines changed: 8 additions & 13 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
12-
- uses: cachix/install-nix-action@v21
13-
- uses: cachix/cachix-action@v12
12+
- uses: cachix/install-nix-action@v31
13+
- uses: cachix/cachix-action@v15
1414
with:
1515
name: guibou
1616
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'

.github/workflows/master.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
nix_matrix:
99
strategy:
1010
matrix:
11-
ghc: [90, 92, 94, 96, 98, 910, 912]
11+
ghc: [94, 96, 98, 910, 912, 914]
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15-
- uses: cachix/install-nix-action@v21
16-
- uses: cachix/cachix-action@v12
15+
- uses: cachix/install-nix-action@v31
16+
- uses: cachix/cachix-action@v15
1717
with:
1818
name: guibou
1919
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
@@ -23,7 +23,8 @@ jobs:
2323
stack_build:
2424
strategy:
2525
matrix:
26-
resolver: [lts-14.27, # 8.6
26+
resolver: [
27+
lts-14.27, # 8.6
2728
lts-16.31, # 8.8
2829
lts-17.1, # 8.10
2930
lts-19.1, # 9.0

flake.nix

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@
5353
rec {
5454
checks = {
5555
inherit (packages)
56-
pyf_810
57-
pyf_90
58-
pyf_92
5956
pyf_94
6057
pyf_96
6158
pyf_98
@@ -68,11 +65,8 @@
6865

6966
packages = {
7067
# GHC 8.6 is tested with stack, I'm stopping the testing with nix.
71-
# GHC 8.8 is not in nixpkgs anymore.
68+
# GHC 8.6..9.2 are not in nixpkgs anymore.
7269

73-
pyf_810 = pyfBuilder haskell.packages.ghc810;
74-
pyf_90 = pyfBuilder haskell.packages.ghc90;
75-
pyf_92 = pyfBuilder haskell.packages.ghc92;
7670
pyf_94 = pyfBuilder haskell.packages.ghc94;
7771
pyf_96 = pyfBuilder haskell.packages.ghc96;
7872
pyf_98 = pkgs.haskell.lib.dontCheck (pyfBuilder haskell.packages.ghc98);

0 commit comments

Comments
 (0)