forked from cardano-foundation/cardano-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.nix
266 lines (227 loc) · 9.28 KB
/
release.nix
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
############################################################################
#
# Hydra release jobset.
#
# The purpose of this file is to select jobs defined in default.nix and map
# them to all supported build platforms.
#
# The layout is TARGET-SYSTEM.ATTR-PATH.BUILD-SYSTEM where
#
# * TARGET-SYSTEM is one of
# - native - build the job for BUILD-SYSTEM
# - x86_64-w64-mingw32 - build the job for windows
# - musl64 - build the job for Linux, but statically linked with musl libc
#
# * ATTR-PATH is an attribute from default.nix
#
# * BUILD-SYSTEM is the system where the derivation is built. Hydra
# uses this to distribute builds to its build slaves. If building
# locally then it must reflect your local system. The value is one of:
# - x86_64-linux - Linux
# - x86_64-darwin - macOS
#
# Discover jobs by using tab completion in your shell:
# nix-build release.nix -A <TAB>
# ... or by looking at the jobset evaluated by Hydra:
# https://hydra.iohk.io/jobset/Cardano/cardano-wallet#tabs-jobs
#
# To build locally when you do not have access to remote builders for
# either macOS or Linux, change the `supportedSystems` argument.
# - To build on Linux (without macOS):
# nix-build --arg supportedSystems '["x86_64-linux"]' release.nix
# - To build on macOS (without Linux):
# nix-build --arg supportedSystems '["x86_64-darwin"]' supportedCrossSystems '["x86_64-darwin"]' release.nix
#
############################################################################
# The project sources
{ cardano-wallet ? { outPath = ./.; rev = pkgs.commonLib.commitIdFromGitRepoOrZero ./.git; }
# Function arguments to pass to the project
, projectArgs ? {
config = { allowUnfree = false; inHydra = true; };
gitrev = cardano-wallet.rev;
inherit pr borsBuild sourcesOverride;
}
# The systems that the jobset will be built for.
, supportedSystems ? [ "x86_64-linux" "x86_64-darwin" ]
# The systems used for cross-compiling
, supportedCrossSystems ? [ "x86_64-linux" ]
# A Hydra option
, scrubJobs ? true
# Dependencies overrides
, sourcesOverride ? {}
# Import pkgs, including IOHK common nix lib
, pkgs ? import ./nix { inherit sourcesOverride; }
# GitHub PR number (as a string), provided as a Hydra input
, pr ? null
# Can be "staging" or "trying" to indicate that this is a bors jobset
, borsBuild ? null
# Platform filter string for jobset.
, platform ? "all"
}:
assert pkgs.lib.asserts.assertOneOf "platform" platform
["all" "linux" "macos" "windows"];
let
buildNative = builtins.elem builtins.currentSystem supportedSystems;
buildLinux = builtins.elem "x86_64-linux" supportedSystems && buildForPlatform "linux";
buildMacOS = builtins.elem "x86_64-darwin" supportedSystems && buildForPlatform "macos";
buildMusl = builtins.elem "x86_64-linux" supportedCrossSystems && buildLinux;
buildWindows = builtins.elem builtins.currentSystem supportedCrossSystems && buildForPlatform "windows";
buildForPlatform = name: builtins.elem platform ["all" name];
in
with (import pkgs.iohkNix.release-lib) {
inherit pkgs;
inherit supportedCrossSystems scrubJobs projectArgs;
supportedSystems =
pkgs.lib.optional buildLinux "x86_64-linux" ++
pkgs.lib.optional buildMacOS "x86_64-darwin";
packageSet = import cardano-wallet;
gitrev = cardano-wallet.rev;
};
with pkgs.lib;
let
############################################################################
# Mapping the default.nix derivations to build platforms
inherit (systems.examples) mingwW64 musl64;
mappedJobs = optionalAttrs buildNative {
native = mapTestOn (filterMappedNative (packagePlatformsOrig (filterJobsNative project)));
} // optionalAttrs buildWindows {
"${mingwW64.config}" = mapTestOnCross mingwW64
(packagePlatformsCross (filterJobsWindows project));
} // optionalAttrs buildMusl {
musl64 = mapTestOnCross musl64
(packagePlatformsCross (filterJobsCross project));
};
############################################################################
# Collecting and filtering jobs
testsSupportedSystems =
optional buildLinux "x86_64-linux" ++
optional buildMacOS "x86_64-darwin";
# Recurse through an attrset, returning all test derivations in a list.
collectTests' = ds: filter (d: elem d.system testsSupportedSystems) (collect isDerivation ds);
# Adds the package name to the test derivations for windows-testing-bundle.nix
# (passthru.identifier.name does not survive mapTestOn)
collectTests = ds: concatLists (
mapAttrsToList (packageName: package:
map (drv: drv // { inherit packageName; }) (collectTests' package)
) ds);
# Remove build jobs for which cross compiling does not make sense.
filterJobsCross = filterAttrs (n: _: !(elem n [
"dockerImage"
"shell"
"shell-prof"
"stackShell"
"cabalShell"
"stackNixRegenerate"
]));
# Remove cardano-node integration tests for Windows because
# ouroboros-network doesn't work under wine.
filterJobsWindows = let
f = path: value: if (isCardanoNodeIntegration path) then {} else value;
isCardanoNodeIntegration = path:
path == ["checks" "cardano-wallet" "integration"];
in
js: mapAttrsRecursive f (filterJobsCross js);
# Filters jobs for non-cross builds after platform mapping.
# 1. Don't run tests on linux native, because they are also run for linux musl.
filterMappedNative = let
removeLinuxNativeChecks = path: value:
if (head path == "checks" && builtins.typeOf value == "list")
then remove "x86_64-linux" value
else value;
in mapAttrsRecursive removeLinuxNativeChecks;
# Filters the derivations from default.nix for non-cross builds.
# 1. Build profiled packages for the master branch, so that they are cached.
# But don't make profiled builds for PRs because this is a waste of time.
# 2. Remove the test coverage report - only generate that for Linux musl.
filterJobsNative = let
removeProfiledBuildForPRs = if (pr == null)
then id
else filterAttrs (n: _: n != "shell-prof");
removeCoverageReport = filterAttrs (n: _: n != "testCoverageReport");
in
drvs: removeCoverageReport (removeProfiledBuildForPRs drvs);
############################################################################
# This aggregate job is what IOHK Hydra uses to update the CI status
# in GitHub.
required = mkRequiredJob (
optionals buildNative (
collectTests jobs.native.checks ++
collectTests jobs.native.benchmarks ++
optionals buildLinux [
jobs.native.shell.x86_64-linux
# executables for linux
jobs.native.cardano-wallet.x86_64-linux
] ++
optionals buildMacOS [
jobs.native.shell.x86_64-darwin
# executables for macOS
jobs.native.cardano-wallet.x86_64-darwin
# Release packages for macOS
jobs.cardano-wallet-macos64
]) ++
optionals buildMusl (
collectTests jobs.musl64.checks ++
# Release packages for Linux
[ jobs.cardano-wallet-linux64
]) ++
optionals buildWindows (
collectTests jobs.x86_64-w64-mingw32.checks ++
[ jobs.x86_64-w64-mingw32.cardano-wallet.x86_64-linux
# Release packages for Windows
jobs.cardano-wallet-win64
# Windows testing package - is run nightly in CI.
jobs.cardano-wallet-tests-win64
]));
############################################################################
# Release distribution jobs - these all have a Hydra download link.
# Which exes should be put in the release archive.
releaseContents = {
shelley = [
"cardano-wallet"
"bech32"
"cardano-address"
"cardano-cli"
"cardano-node"
"cardano-tx"
];
};
# function to take a list of jobs by name from a jobset.
selectExes = subjobs: system: map (exe: subjobs.${exe}.${system});
releaseDistJobs = optionalAttrs buildWindows {
# Windows release ZIP archive - shelley
cardano-wallet-win64 = import ./nix/windows-release.nix {
inherit pkgs;
exes = selectExes jobs.x86_64-w64-mingw32 "x86_64-linux" releaseContents.shelley;
};
# This is used for testing the build on windows.
cardano-wallet-tests-win64 = let
winJobs = jobs."${mingwW64.config}";
in import ./nix/windows-testing-bundle.nix {
inherit pkgs project;
cardano-wallet = winJobs.cardano-wallet.x86_64-linux;
cardano-node = winJobs.cardano-node.x86_64-linux;
cardano-cli = winJobs.cardano-cli.x86_64-linux;
tests = collectTests winJobs.tests;
benchmarks = collectTests winJobs.benchmarks;
};
} // optionalAttrs buildMusl {
cardano-wallet-linux64 = import ./nix/linux-release.nix {
inherit pkgs;
exes = selectExes jobs.musl64 "x86_64-linux" releaseContents.shelley;
};
} // optionalAttrs buildMacOS {
cardano-wallet-macos64 = hydraJob' (import ./nix/macos-release.nix {
inherit (pkgsFor "x86_64-darwin") pkgs;
exes = selectExes jobs.native "x86_64-darwin" releaseContents.shelley;
});
};
############################################################################
# Miscellaneous extra jobs
otherJobs = optionalAttrs buildLinux {
# Build and cache the build script used on Buildkite
buildkiteScript = import ./.buildkite/default.nix {
walletPackages = project;
};
};
jobs = mappedJobs // required // releaseDistJobs // otherJobs;
in jobs