Skip to content

Run the benchmark suite on GHC 9.2.3 #3069

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Aug 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ['8.10.7']
ghc: ['8.10.7', '9.2.3']
os: [ubuntu-latest]

# This code is fitted to the strategy: assumes Linux is used ... etc,
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ['8.10.7']
ghc: ['8.10.7', '9.2.3']
os: [ubuntu-latest]
cabal: ['3.6']
example: ['cabal', 'lsp-types']
Expand Down
20 changes: 10 additions & 10 deletions ghcide/bench/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,34 +14,34 @@ examples:
# Medium-sized project without TH
- name: cabal
package: Cabal
version: 3.0.0.0
version: 3.6.3.0
modules:
- Distribution/Simple.hs
- Distribution/Types/Module.hs
- src/Distribution/Simple.hs
- src/Distribution/Types/Module.hs
extra-args: [] # extra ghcide command line args
- name: cabal-1module
package: Cabal
version: 3.0.0.0
version: 3.6.3.0
modules:
- Distribution/Simple.hs
- src/Distribution/Simple.hs
- name: cabal-conservative
package: Cabal
version: 3.0.0.0
version: 3.6.3.0
modules:
- Distribution/Simple.hs
- Distribution/Types/Module.hs
- src/Distribution/Simple.hs
- src/Distribution/Types/Module.hs
extra-args: # extra ghcide command line args
- --conservative-change-tracking
# Small-sized project with TH
- name: lsp-types
package: lsp-types
version: 1.0.0.1
version: 1.5.0.0
modules:
- src/Language/LSP/VFS.hs
- src/Language/LSP/Types/Lens.hs
- name: lsp-types-conservative
package: lsp-types
version: 1.0.0.1
version: 1.5.0.0
modules:
- src/Language/LSP/VFS.hs
- src/Language/LSP/Types/Lens.hs
Expand Down