##// 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 1 # This file defines how to "build" for packaging.
2 2
3 3 { pkgs ? import <nixpkgs> {}
4 , doCheck ? true
4 , doCheck ? false
5 5 }:
6 6
7 7 let
8 8 enterprise_ce = import ./default.nix {
9 9 inherit
10 10 doCheck
11 11 pkgs;
12
13 # disable checkPhase for build
14 checkPhase = ''
15 '';
16
12 17 };
13 18
14 19 in {
15 20 build = enterprise_ce;
16 21 }
General Comments 0
You need to be logged in to leave comments. Login now