-
-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regularise the building and testing of packages
This moves the specificaiton of which packages we have and which versions of GHC they don't support to a data file, which we can then use to select the packages to build programmatically, rather than having an explicit listing of steps in the workflow file.
- Loading branch information
Showing
7 changed files
with
103 additions
and
195 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,17 +65,16 @@ jobs: | |
uses: fkirc/[email protected] | ||
with: | ||
cancel_others: false | ||
paths_ignore: '["**/docs/**" | ||
paths_ignore: '[ "**/docs/**" | ||
, "**.md" | ||
, "**/LICENSE" | ||
, "**.nix" | ||
, "flake.lock" | ||
, "**/README.md" | ||
, "FUNDING.yml" | ||
, "**.yml" | ||
, "**.yaml" | ||
, ".circleci/**" | ||
, "**/stack*.yaml" | ||
, ".gitlab-ci.yaml" | ||
, ".gitlab/**" | ||
, ".github/**" | ||
]' | ||
|
||
caching: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,13 +27,11 @@ jobs: | |
paths_ignore: '[ "**/docs/**" | ||
, "**.md" | ||
, "**/LICENSE" | ||
, "**.yml" | ||
, "**.yaml" | ||
, ".circleci/**" | ||
, "**/README.md" | ||
, "FUNDING.yml" | ||
, "**/stack*.yaml" | ||
, "**/stack*.yaml" | ||
, ".gitlab-ci.yaml" | ||
, ".gitlab/**" | ||
, ".github/**" | ||
]' | ||
- id: skip_check_no_nix | ||
uses: fkirc/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[ | ||
{ "package": "haskell-language-server", "excluded_ghcs" : [] } | ||
, { "package": "hie-compat", "excluded_ghcs" : [] } | ||
, { "package": "shake-bench", "excluded_ghcs" : ["9.6"] } | ||
, { "package": "hls-graph", "excluded_ghcs" : [] } | ||
, { "package": "ghcide", "excluded_ghcs" : [] } | ||
, { "package": "ghcide-bench", "excluded_ghcs" : [] } | ||
, { "package": "ghcide-test-utils", "excluded_ghcs" : [] } | ||
, { "package": "hls-plugin-api", "excluded_ghcs" : [] } | ||
, { "package": "hls-test-utils", "excluded_ghcs" : [] } | ||
, { "package": "hls-cabal-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-cabal-fmt-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-tactics-plugin", "excluded_ghcs" : ["9.2", "9.4", "9.6"] } | ||
, { "package": "hls-stylish-haskell-plugin", "excluded_ghcs" : ["9.6"] } | ||
, { "package": "hls-fourmolu-plugin", "excluded_ghcs" : ["9.6"] } | ||
, { "package": "hls-class-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-eval-plugin", "excluded_ghcs" : ["9.4"] } | ||
, { "package": "hls-explicit-imports-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-refine-imports-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-hlint-plugin", "excluded_ghcs" : ["9.6"] } | ||
, { "package": "hls-rename-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-retrie-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-haddock-comments-plugin", "excluded_ghcs" : ["9.2", "9.4", "9.6"] } | ||
, { "package": "hls-splice-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-floskell-plugin", "excluded_ghcs" : ["9.6"] } | ||
, { "package": "hls-pragmas-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-module-name-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-ormolu-plugin", "excluded_ghcs" : ["9.6"] } | ||
, { "package": "hls-call-hierarchy-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-alternate-number-format-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-qualify-imported-names-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-code-range-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-change-type-signature-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-stan-plugin", "excluded_ghcs" : [ "9.0", "9.2", "9.4", "9.6"] } | ||
, { "package": "hls-gadt-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-explicit-fixity-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-explicit-record-fields-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-refactor-plugin", "excluded_ghcs" : [] } | ||
, { "package": "hls-overloaded-record-dot-plugin", "excluded_ghcs" : ["8.10", "9.0"] } | ||
] |
Oops, something went wrong.