We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e38fad2 commit fc0ed56Copy full SHA for fc0ed56
.github/workflows/nix.yml
@@ -12,5 +12,10 @@ jobs:
12
- uses: actions/checkout@v3
13
- name: Install Nix
14
uses: DeterminateSystems/nix-installer-action@main
15
- - name: Run Test
16
- run: nix develop --command sbt compilerJVM/test
+ - uses: rrbutani/use-nix-shell-action@v1
+ with:
17
+ devShell: .#default
18
+ - name: Run test
19
+ run: sbt -J-Xmx4096M -J-Xss4M test
20
+ - name: Check no changes
21
+ run: git diff-files -p --exit-code
flake.nix
@@ -11,7 +11,7 @@
11
(system:
let
sbtOverlay = self: super: {
- sbt = super.sbt.override { jre = super.jdk17; };
+ sbt = super.sbt.override { jre = super.jdk8_headless; };
};
pkgs = import nixpkgs {
inherit system;
@@ -26,7 +26,7 @@
26
gmp
27
mimalloc
28
sbt
29
- nodejs
+ nodejs_18
30
];
31
32
});
0 commit comments