File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -37,23 +37,17 @@ jobs:
37
37
# No caching, since the point is to verify they can be installed "from scratch"
38
38
# Don't run on master or a PR targeting master, because there's never an installable Cabal
39
39
dogfood-sdists :
40
- name : Dogfood sdist on ${{ matrix.os }} ghc-${{ matrix.ghc }}
40
+ name : Dogfood sdist on ghc-${{ matrix.ghc }}
41
41
if : github.ref != 'refs/heads/master' && github.base_ref != 'master'
42
- runs-on : ${{ matrix.os }}
42
+ runs-on : ubuntu-latest
43
43
strategy :
44
44
matrix :
45
- os : [ubuntu-latest]
46
45
# this should be kept up to date with the list in validate.yml, but should be the
47
46
# *first* compiler release so we validate against what is hopefully the first
48
47
# release of a corresponding Cabal and friends. it can also be short since it's
49
48
# highly unlikely that we are releasing really old branches.
50
49
ghc :
51
- [
52
- " 9.10.1" ,
53
- " 9.8.1" ,
54
- " 9.6.1" ,
55
- " 9.4.1" ,
56
- ]
50
+ ["9.10.1", "9.8.1", "9.6.1"]
57
51
58
52
steps :
59
53
You can’t perform that action at this time.
0 commit comments