blob: 6ad860d4fac902e23386cf22f59dba430f2ab826 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
|
{ lib, pkgs }:
let
inherit (lib) optionalString;
inherit (pkgs)
autoconf
automake
checkinstall
clang-analyzer
cov-build
enableGCOVInstrumentation
lcov
libtool
makeGCOVReport
runCommand
stdenv
vmTools
xz
;
in
rec {
sourceTarball =
args:
import ./source-tarball.nix (
{
inherit
lib
stdenv
autoconf
automake
libtool
;
}
// args
);
makeSourceTarball = sourceTarball; # compatibility
binaryTarball =
args:
import ./binary-tarball.nix (
{
inherit lib stdenv;
}
// args
);
mvnBuild =
args:
import ./maven-build.nix (
{
inherit lib stdenv;
}
// args
);
nixBuild =
args:
import ./nix-build.nix (
{
inherit lib stdenv;
}
// args
);
coverageAnalysis =
args:
nixBuild (
{
inherit lcov enableGCOVInstrumentation makeGCOVReport;
doCoverageAnalysis = true;
}
// args
);
clangAnalysis =
args:
nixBuild (
{
inherit clang-analyzer;
doClangAnalysis = true;
}
// args
);
coverityAnalysis =
args:
nixBuild (
{
inherit cov-build xz;
doCoverityAnalysis = true;
}
// args
);
rpmBuild =
args:
import ./rpm-build.nix (
{
inherit lib vmTools;
}
// args
);
debBuild =
args:
import ./debian-build.nix (
{
inherit
lib
stdenv
vmTools
checkinstall
;
}
// args
);
aggregate =
{
name,
constituents,
meta ? { },
}:
pkgs.runCommand name
{
inherit constituents meta;
preferLocalBuild = true;
_hydraAggregate = true;
}
''
mkdir -p $out/nix-support
touch $out/nix-support/hydra-build-products
echo $constituents > $out/nix-support/hydra-aggregate-constituents
# Propagate build failures.
for i in $constituents; do
if [ -e $i/nix-support/failed ]; then
touch $out/nix-support/failed
fi
done
'';
/*
Create a channel job which success depends on the success of all of
its contituents. Channel jobs are a special type of jobs that are
listed in the channel tab of Hydra and that can be subscribed.
A tarball of the src attribute is distributed via the channel.
- constituents: a list of derivations on which the channel success depends.
- name: the channel name that will be used in the hydra interface.
- src: should point to the root folder of the nix-expressions used by the
channel, typically a folder containing a `default.nix`.
channel {
constituents = [ foo bar baz ];
name = "my-channel";
src = ./.;
};
*/
channel =
{
name,
src,
constituents ? [ ],
meta ? { },
isNixOS ? true,
...
}@args:
stdenv.mkDerivation (
{
preferLocalBuild = true;
_hydraAggregate = true;
dontConfigure = true;
dontBuild = true;
patchPhase = optionalString isNixOS ''
touch .update-on-nixos-rebuild
'';
installPhase = ''
mkdir -p $out/{tarballs,nix-support}
tar cJf "$out/tarballs/nixexprs.tar.xz" \
--owner=0 --group=0 --mtime="1970-01-01 00:00:00 UTC" \
--transform='s!^\.!${name}!' .
echo "channel - $out/tarballs/nixexprs.tar.xz" > "$out/nix-support/hydra-build-products"
echo $constituents > "$out/nix-support/hydra-aggregate-constituents"
# Propagate build failures.
for i in $constituents; do
if [ -e "$i/nix-support/failed" ]; then
touch "$out/nix-support/failed"
fi
done
'';
meta = meta // {
isHydraChannel = true;
};
}
// removeAttrs args [ "meta" ]
);
}
|