-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy path.drone.jsonnet
More file actions
182 lines (174 loc) · 5.97 KB
/
.drone.jsonnet
File metadata and controls
182 lines (174 loc) · 5.97 KB
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
// This build configuration requires the following to be installed:
// Git, Xcode, XCode Command-line Tools, xcbeautify, xcresultparser
// Log a bunch of version information to make it easier for debugging
local version_info = {
name: 'Version Information',
environment: { LANG: 'en_US.UTF-8' },
commands: [
'git --version',
'xcbeautify --version',
'xcresultparser --version',
'xcodebuild -version',
'xcodebuild -showsdks',
'xcode-select -p',
'xcrun simctl list runtimes'
],
};
// cmake options for static deps mirror
local ci_dep_mirror(want_mirror) = (if want_mirror then ' -DLOCAL_MIRROR=https://oxen.rocks/deps ' else '');
local boot_simulator(device_type="") = {
name: 'Boot Test Simulator',
commands: [
'devname="Test-iPhone-${DRONE_COMMIT:0:9}-${DRONE_BUILD_EVENT}"',
'sdk_version=$(xcrun --sdk iphoneos --show-sdk-version 2>/dev/null || echo "")',
'runtime=$(xcrun simctl list runtimes -j | jq -r --arg v "$sdk_version" \'' +
'[.runtimes[] | select(.platform == "iOS" and .isAvailable == true)]' +
' | (map(select(.version == $v))[0] // sort_by(.version)[-1])' +
' | .identifier' +
'\')',
'echo "Using runtime: $runtime (SDK: $sdk_version)"',
(if device_type != "" then
'xcrun simctl create "$devname" ' + device_type
else
'device_type=$(xcrun simctl list devicetypes -j | ' +
'jq -r \'.devicetypes | map(select(.productFamily=="iPhone")) | sort_by(.minRuntimeVersion) | .[-1].identifier\' | tail -n1); ' +
'xcrun simctl create "$devname" "$device_type"'
),
'sim_uuid=$(xcrun simctl list devices -je | jq -re \'[.devices[][] | select(.name == "\'$devname\'").udid][0]\')',
'xcrun simctl boot $sim_uuid',
'mkdir -p build/artifacts',
'echo $sim_uuid > ./build/artifacts/sim_uuid',
'echo $devname > ./build/artifacts/device_name',
'xcrun simctl list -je devices $sim_uuid | jq -r \'.devices[][0] | "\\u001b[32;1mSimulator " + .state + ": \\u001b[34m" + .name + " (\\u001b[35m" + .deviceTypeIdentifier + ", \\u001b[36m" + .udid + "\\u001b[34m)\\u001b[0m"\'',
],
};
local sim_keepalive = {
name: '(Simulator keep-alive)',
commands: [
'/Users/$USER/sim-keepalive/keepalive.sh $(<./build/artifacts/sim_uuid)',
],
depends_on: ['Boot Test Simulator'],
};
local sim_delete_cmd = 'if [ -f build/artifacts/sim_uuid ]; then rm -f /Users/$USER/sim-keepalive/$(<./build/artifacts/sim_uuid); fi';
local clear_spm_cache_on_commit_trigger = {
name: 'Reset SPM Cache if Needed',
commands: [
'./Scripts/reset_spm_cache.sh',
],
};
local clean_up_old_test_sims_on_commit_trigger = {
name: 'Clean up Old Test Simulators if Needed',
commands: [
'./Scripts/clean_up_old_test_simulators.sh',
],
};
[
// Unit tests (PRs only)
{
kind: 'pipeline',
type: 'exec',
name: 'Unit Tests',
platform: { os: 'darwin', arch: 'arm64' },
trigger: { event: { exclude: ['push'] } },
steps: [
version_info,
clear_spm_cache_on_commit_trigger,
clean_up_old_test_sims_on_commit_trigger,
boot_simulator(),
sim_keepalive,
{
name: 'Build and Run Tests',
commands: [
'./Scripts/build_ci.sh test -destination "platform=iOS Simulator,id=$(<./build/artifacts/sim_uuid)" -parallel-testing-enabled NO -test-timeouts-enabled YES -maximum-test-execution-time-allowance 10 -collect-test-diagnostics never ENABLE_TESTABILITY=YES',
],
depends_on: [
'Reset SPM Cache if Needed',
'Clean up Old Test Simulators if Needed',
'Boot Test Simulator'
],
},
{
name: 'Stop Simulator Keep-Alive',
commands: [
'echo "Signaling simulator keep-alive to stop and clean up..."',
sim_delete_cmd,
],
depends_on: ['Build and Run Tests'],
when: {
status: ['success', 'failure'],
},
},
{
name: 'Log Failed Test Summary',
commands: [
'echo "--- FAILED TESTS ---"',
'xcresultparser --output-format cli --failed-tests-only ./build/artifacts/testResults.xcresult',
'exit 1' // Always fail if this runs to make it more obvious in the UI
],
depends_on: ['Build and Run Tests'],
when: {
status: ['failure'], // Only run this on failure
},
},
{
name: 'Generate Code Coverage Report',
commands: [
'xcresultparser --output-format cobertura ./build/artifacts/testResults.xcresult > ./build/artifacts/coverage.xml',
],
depends_on: ['Build and Run Tests'],
when: {
status: ['success'],
},
},
],
},
// Validate build artifact was created by the direct branch push (PRs only)
{
kind: 'pipeline',
type: 'exec',
name: 'Check Build Artifact Existence',
platform: { os: 'darwin', arch: 'arm64' },
trigger: { event: { exclude: ['push'] } },
steps: [
{
name: 'Poll for build artifact existence',
commands: [
'./Scripts/drone-upload-exists.sh',
],
},
],
},
// Simulator build (non-PRs only)
{
kind: 'pipeline',
type: 'exec',
name: 'Simulator Build',
platform: { os: 'darwin', arch: 'arm64' },
trigger: { event: { exclude: ['pull_request'] } },
steps: [
version_info,
clear_spm_cache_on_commit_trigger,
clean_up_old_test_sims_on_commit_trigger,
{
name: 'Build',
commands: [
'./Scripts/build_ci.sh archive -sdk iphonesimulator -archivePath ./build/Session_sim.xcarchive -destination "generic/platform=iOS Simulator" DEBUG_INFORMATION_FORMAT=dwarf',
],
depends_on: [
'Reset SPM Cache if Needed',
'Clean up Old Test Simulators if Needed'
]
},
{
name: 'Upload artifacts',
environment: { SSH_KEY: { from_secret: 'SSH_KEY' } },
commands: [
'./Scripts/drone-static-upload.sh',
],
depends_on: [
'Build',
],
},
],
},
]