Skip to content

Commit

Permalink
Merge pull request yesodweb#941 from Vlix/updating-CI-to-newer-GHC-an…
Browse files Browse the repository at this point in the history
…d-stack-ltses

Dropped testing GHC < 8.10.7, made builds work on subsequent LTS-es
  • Loading branch information
kazu-yamamoto authored Sep 10, 2023
2 parents 5bffe8c + e6d68f0 commit ef32062
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
args:
- "--resolver nightly --stack-yaml stack-nightly.yaml"
- "--resolver lts-21"
- "--resolver lts-20 --stack-yaml stack-lts-20.yaml"
- "--resolver lts-19"
- "--resolver lts-18"
- "--resolver lts-17 --stack-yaml stack-lts-17.yaml"
- "--resolver lts-16 --stack-yaml stack-lts-17.yaml"

steps:
- name: Clone project
Expand Down
31 changes: 31 additions & 0 deletions stack-lts-20.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
resolver: lts-20.26
packages:
- ./recv
- ./auto-update
- ./mime-types
- ./wai
- ./wai-extra
- ./warp
- ./warp-tls
- ./wai-app-static
- ./wai-frontend-monadcgi
- ./wai-http2-extra
- ./wai-websockets
- ./wai-conduit
- ./time-manager
flags:
wai-extra:
build-example: true
nix:
enable: false
packages:
- fcgi
- zlib
extra-deps:
- crypton-0.33
- crypton-x509-1.7.6
- crypton-x509-store-1.6.9
- crypton-x509-validation-1.6.12
- tls-1.8.0
- cgi-3001.5.0.1
- multipart-0.2.1
5 changes: 2 additions & 3 deletions stack-nightly.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resolver: nightly-2020-01-08
resolver: nightly-2023-09-09
packages:
- ./recv
- ./auto-update
Expand All @@ -8,8 +8,7 @@ packages:
- ./warp
- ./warp-tls
- ./wai-app-static
# 'cgi' package isn't up to date
# - ./wai-frontend-monadcgi
- ./wai-frontend-monadcgi
- ./wai-http2-extra
- ./wai-websockets
- ./wai-conduit
Expand Down
9 changes: 7 additions & 2 deletions stack.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resolver: lts-18.28
resolver: lts-21.11
packages:
- ./recv
- ./auto-update
Expand All @@ -21,4 +21,9 @@ nix:
packages:
- fcgi
- zlib
extra-deps: []
extra-deps:
- crypton-0.33
- crypton-x509-1.7.6
- crypton-x509-store-1.6.9
- crypton-x509-validation-1.6.12
- tls-1.8.0

0 comments on commit ef32062

Please sign in to comment.