-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Switch back to GHC9.4 for now * Fixed nix-shell in ihp-hsx * Renabled support for GHC9.4 in ihp-hsx * Delete hlint.nix * Create hlint.nix * Deleted unused nix configs * Don't override the nix config on our M1 runner * Jailbreak hls-hlint-plugin * Jailbreak hlint * Create hls-hlint-plugin.nix * nixpkgs update * simplified tests runner * Run github actions less
- Loading branch information
1 parent
6f0f8da
commit 4f1c9fb
Showing
19 changed files
with
80 additions
and
135 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
name: Check JavaScript | ||
on: | ||
push: | ||
branches: '*' | ||
pull_request: | ||
branches: [master] | ||
jobs: | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,23 +1,12 @@ | ||
name: "Tests" | ||
name: "Tests + Compile" | ||
on: | ||
pull_request: | ||
branches: [master] | ||
push: | ||
branches: [master] | ||
|
||
jobs: | ||
tests: | ||
runs-on: ARM64 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cachix/install-nix-action@v22 | ||
with: | ||
nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/archive/a95ed9fe764c3ba2bf2d2fa223012c379cd6b32e.tar.gz | ||
if: matrix.os != 'ARM64' | ||
- uses: cachix/cachix-action@v12 | ||
with: | ||
name: digitallyinduced | ||
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | ||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | ||
if: matrix.os != 'ARM64' | ||
- run: nix develop --impure --command tests | ||
- run: nix develop --impure --command fastbuild |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ mkDerivation, aeson, apply-refact, base, binary, bytestring | ||
, containers, data-default, deepseq, Diff, directory, extra | ||
, filepath, ghc-exactprint, ghc-lib-parser, ghc-lib-parser-ex | ||
, ghcide, hashable, hlint, hls-plugin-api, hls-test-utils, lens | ||
, lib, lsp, lsp-types, mtl, refact, regex-tdfa, row-types, stm | ||
, temporary, text, transformers, unordered-containers | ||
}: | ||
mkDerivation { | ||
pname = "hls-hlint-plugin"; | ||
version = "2.2.0.0"; | ||
sha256 = "0qrygjvgm5x88j7cjw9dhzli38by0gzmda8f8bkqi8v1qx09ny76"; | ||
libraryHaskellDepends = [ | ||
aeson apply-refact base binary bytestring containers data-default | ||
deepseq Diff directory extra filepath ghc-exactprint ghc-lib-parser | ||
ghc-lib-parser-ex ghcide hashable hlint hls-plugin-api lens lsp mtl | ||
refact regex-tdfa stm temporary text transformers | ||
unordered-containers | ||
]; | ||
testHaskellDepends = [ | ||
aeson base containers filepath hls-plugin-api hls-test-utils lens | ||
lsp-types row-types text | ||
]; | ||
description = "Hlint integration plugin with Haskell Language Server"; | ||
license = lib.licenses.asl20; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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