Skip to content

Commit 692a80b

Browse files
authored
Merge pull request haskell#10480 from haskell/mergify/bp/3.14/pr-10448
Backport haskell#10448: try to run check-sdist on the right ghcs
2 parents 274efa3 + 93c732b commit 692a80b

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

.github/workflows/check-sdist.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,17 @@ jobs:
2828
# No caching, since the point is to verify they can be installed "from scratch"
2929
# Don't run on master or a PR targeting master, because there's never an installable Cabal
3030
dogfood-sdists:
31-
name: Dogfood sdist on ${{ matrix.os }} ghc-${{ matrix.ghc }}
31+
name: Dogfood sdist on ghc-${{ matrix.ghc }}
3232
if: github.ref != 'refs/heads/master' && github.base_ref != 'master'
33-
runs-on: ${{ matrix.os }}
33+
runs-on: ubuntu-latest
3434
strategy:
3535
matrix:
36-
os: [ubuntu-latest]
3736
# this should be kept up to date with the list in validate.yml, but should be the
3837
# *first* compiler release so we validate against what is hopefully the first
3938
# release of a corresponding Cabal and friends. it can also be short since it's
4039
# highly unlikely that we are releasing really old branches.
4140
ghc:
42-
[
43-
"9.10.1",
44-
"9.8.1",
45-
"9.6.1",
46-
"9.4.1",
47-
]
41+
["9.10.1", "9.8.1", "9.6.1"]
4842

4943
steps:
5044

0 commit comments

Comments
 (0)