We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0de60e8 commit 969738fCopy full SHA for 969738f
.buildkite/pipeline.yml
@@ -0,0 +1,9 @@
1
+env:
2
+ NIX_PATH: "channel:nixos-18.09"
3
+ NIX_BUILD_ARGS: "--cores 0 --max-jobs 2"
4
+
5
+steps:
6
+ - label: 'Run tests'
7
+ command: ./test/tests.sh
8
+ agents:
9
+ system: x86_64-linux
release.nix
@@ -0,0 +1,7 @@
+with (import ./default.nix {});
+{
+ inherit nix-tools;
+ tests = callPackage ./test {};
+}
test/default.nix
@@ -1,12 +1,10 @@
-{ pkgs ? import <nixpkgs> { } }:
+{ pkgs ? import <nixpkgs> { }
+, haskell ? pkgs.callPackage ../. { }
+}:
with pkgs;
let
-
- # The new Haskell infra applied to nix representation of Hackage
- haskell = pkgs.callPackage ../. { };
10
util = callPackage ./util.nix {};
11
12
in {
0 commit comments