##// END OF EJS Templates
artifacts: expose a special auth-token based artifacts download urls....
artifacts: expose a special auth-token based artifacts download urls. This will allow sharing download to external locations used new generated artifact download tokens. This feature allows also serving downloads using secret urls with all the fancy logic of our auth tokens.

File last commit:

r3449:7c3af07c default
r4003:09f31efc default
Show More
release.nix
22 lines | 324 B | text/x-nix | NixLexer
nix: updated to 18.03 nix packages...
r2824 # This file defines how to "build" for packaging.
project: added all source files and assets
r1
build: fix 32bit builds
r3449 { pkgs ? import <nixpkgs> {}
, system ? builtins.currentSystem
, doCheck ? false
project: added all source files and assets
r1 }:
let
nix: updated to 18.03 nix packages...
r2824 enterprise_ce = import ./default.nix {
project: added all source files and assets
r1 inherit
build: fix 32bit builds
r3449 doCheck
system;
release: disable check phase for building installation
r2956
# disable checkPhase for build
checkPhase = ''
'';
project: added all source files and assets
r1 };
nix: updated to 18.03 nix packages...
r2824 in {
build = enterprise_ce;
}