##// END OF EJS Templates
release: disable check phase for building installation
marcink -
r2956:63ee4af1 default
parent child Browse files
Show More
@@ -1,16 +1,21 b''
1 # This file defines how to "build" for packaging.
1 # This file defines how to "build" for packaging.
2
2
3 { pkgs ? import <nixpkgs> {}
3 { pkgs ? import <nixpkgs> {}
4 , doCheck ? true
4 , doCheck ? false
5 }:
5 }:
6
6
7 let
7 let
8 enterprise_ce = import ./default.nix {
8 enterprise_ce = import ./default.nix {
9 inherit
9 inherit
10 doCheck
10 doCheck
11 pkgs;
11 pkgs;
12
13 # disable checkPhase for build
14 checkPhase = ''
15 '';
16
12 };
17 };
13
18
14 in {
19 in {
15 build = enterprise_ce;
20 build = enterprise_ce;
16 }
21 }
General Comments 0
You need to be logged in to leave comments. Login now