test-mac-bundle-install ○ success
⏱
Duration: 16s
⏳
Queued: 0s
📁
Stage: test
🖥
Runner: galactica - MacOS runner with ARM CPU (M4)
Average Duration
25s
This job: 16s
Failure Rate
0.0%
last 30 days
External Links
▶
Job Execution Phases
💡 Tip: Click on any phase bar to jump to that section in the log below
▶
Job Analysis
Job Status: Passed
Status: Job passed successfully
▶
Full Job Log
376 lines
Match - of 0
1
22:37:52
Running with gitlab-runner 18.1.3 (a2f2305f)
2
22:37:52
on macOS-galactica T9hxwQPPv, system ID: s_12ad3e056591
3
22:37:52
feature flags: FF_USE_FASTZIP:true, FF_SCRIPT_SECTIONS:true, FF_TIMESTAMPS:true, FF_GIT_URLS_WITHOUT_TOKENS:true
4
22:37:52
Resolving secrets
5
22:37:52
section_start:1778020672:prepare_executor
6
22:37:52
+Preparing the "shell" executor
7
22:37:52
Using Shell (bash) executor...
8
22:37:52
section_end:1778020672:prepare_executor
9
22:37:52
+section_start:1778020672:prepare_script
10
22:37:52
+Preparing environment
11
22:37:53
Running on galactica.zrh.int.scandit.io...
12
22:37:53
section_end:1778020673:prepare_script
13
22:37:53
+section_start:1778020673:get_sources
14
22:37:53
+Getting source from Git repository
15
22:37:53
section_start:1778020673:section_pre_clone_script_0[hide_duration=true,collapsed=true]
$ bash /Volumes/EngData/.gitlab-runner/syspolicyd_health_check.sh || true
16
22:37:53
bash /Volumes/EngData/.gitlab-runner/disk_health_check.sh
17
22:37:53
function cleanup {
18
22:37:53
rv=$?
19
22:37:53
if [ $rv -ne 0 ]; then
20
22:37:53
if [[ -z "$GIT_STRATEGY" || "$GIT_STRATEGY" = "fetch" ]]; then
21
22:37:53
if [ -d "$CI_PROJECT_DIR" ]; then
22
22:37:53
echo "Something went wrong, cleaning $CI_PROJECT_DIR"
23
22:37:53
rm -rf $CI_PROJECT_DIR/{*,.*}
24
22:37:53
fi
25
22:37:53
fi
26
22:37:53
fi
27
22:37:53
exit $rv
28
22:37:53
}
29
22:37:53
trap cleanup EXIT
30
22:37:53
if [ -d "$CI_PROJECT_DIR" ]; then
31
22:37:53
cd "$CI_PROJECT_DIR"
32
22:37:53
for path in $GIT_CLEAN_SUBMODULE_PATHS; do
33
22:37:53
if [[ $(realpath "$path") =~ ^"${CI_PROJECT_DIR}/" ]]; then
34
22:37:53
echo "deleting: $path"
35
22:37:53
rm -rf "$path"
36
22:37:53
else
37
22:37:53
echo "$path is not a subpath of $CI_PROJECT_DIR"
38
22:37:53
fi
39
22:37:53
done
40
22:37:53
cd - > /dev/null
41
22:37:53
fi
42
22:37:53
section_end:1778020673:section_pre_clone_script_0
43
22:37:53
Gitaly correlation ID: 01KQX4MRSZHNZNT7X7XWXAKE6E
44
22:37:53
Fetching changes with git depth set to 50...
45
22:37:53
Initialized empty Git repository in /Volumes/EngData/builds/gitlab-templates/.git/
46
22:37:53
Created fresh repository.
47
22:37:55
Checking out 22f5b5c3 as detached HEAD (ref is refs/merge-requests/639/merge)...
48
22:37:55
49
22:37:55
Skipping Git submodules setup
50
22:37:55
section_end:1778020675:get_sources
51
22:37:55
+section_start:1778020675:step_script
52
22:37:55
+Executing "step_script" stage of the job script
53
22:37:55
section_start:1778020675:section_pre_build_script_0[hide_duration=true,collapsed=true]
$ function cleanup {
54
22:37:55
rv=$?
55
22:37:55
if [ $rv -ne 0 ]; then
56
22:37:55
echo ""
57
22:37:55
echo " Scout Analysis: https://scout.scandit.io/analysis/projects/${CI_PROJECT_ID}/jobs/${CI_JOB_ID}"
58
22:37:55
echo ""
59
22:37:55
fi
60
22:37:55
exit $rv
61
22:37:55
}
62
22:37:55
trap cleanup EXIT
63
22:37:55
echo "INFO: This is the CI pre_build_script. It's defined in the backend/infra/macos repo."
64
22:37:55
echo "Sourcing ~/.bashrc"
65
22:37:55
[ -f "$HOME/.bashrc" ] && . "$HOME/.bashrc"
66
22:37:55
echo "Setting up credentials for Gitlab package registries"
67
22:37:55
echo "machine gitlab.scandit.com" > ~/.netrc
68
22:37:55
echo "login gitlab-ci-token" >> ~/.netrc
69
22:37:55
echo "password ${CI_JOB_TOKEN}" >> ~/.netrc
70
22:37:55
chmod 600 ~/.netrc
71
22:37:55
# Brew installs packages to different paths on M1.
72
22:37:55
# Thus, we need to indicate the path to some brew packages before doing the pip installation.
73
22:37:55
# At least tables package fails without this. These exports are safe to run also in Intel Macs
74
22:37:55
export HDF5_DIR="/opt/homebrew/opt/hdf5"
75
22:37:55
export OPENBLAS="/opt/homebrew/opt/openblas"
76
22:37:55
echo "Setting: HDF5_DIR=$HDF5_DIR"
77
22:37:55
echo "Setting: OPENBLAS=$OPENBLAS"
78
22:37:55
if [ -n "${XCODE_VERSION}" ]; then
79
22:37:55
echo "Using XCODE_VERSION variable to select Xcode version: $XCODE_VERSION"
80
22:37:55
sudo xcode-select --switch /Applications/Xcode.${XCODE_VERSION}.app/Contents/Developer/
81
22:37:55
else
82
22:37:55
echo "XCODE_VERSION was not defined, using Command Line Tools instead"
83
22:37:55
sudo xcode-select -s /Library/Developer/CommandLineTools
84
22:37:55
sudo xcode-select -p
85
22:37:55
fi
86
22:37:55
if [ -n "$ENABLE_DOTNET" ]; then
87
22:37:55
echo "Using DOTNET_VERSION variable to select SDK version: $DOTNET_VERSION"
88
22:37:55
dotnet new globaljson --sdk-version $DOTNET_VERSION --roll-forward feature --force
89
22:37:55
fi
90
22:37:55
python "/Volumes/EngData/.gitlab-runner/tool_versions.py" || true
91
22:37:55
echo "Killing Simulator, xcodebuild, clang, node, dotnet and machinelearningtests processes left from previous job"
92
22:37:55
pkill -9 Simulator || true
93
22:37:55
pkill -9 xcodebuild || true
94
22:37:55
pkill -9 node || true
95
22:37:55
pkill -9 clang || true
96
22:37:55
pkill -9 dotnet || true
97
22:37:55
pkill -9 machinelearningtests || true
98
22:37:55
section_end:1778020675:section_pre_build_script_0
99
22:37:55
INFO: This is the CI pre_build_script. It's defined in the backend/infra/macos repo.
100
22:37:55
Sourcing ~/.bashrc
101
22:37:56
Setting up credentials for Gitlab package registries
102
22:37:56
Setting: HDF5_DIR=/opt/homebrew/opt/hdf5
103
22:37:56
Setting: OPENBLAS=/opt/homebrew/opt/openblas
104
22:37:56
XCODE_VERSION was not defined, using Command Line Tools instead
105
22:37:56
/Library/Developer/CommandLineTools
106
22:37:57
Tool versions in this host:
107
22:37:57
Available Node versions: 16.13.0, 16.20.1, 18.19.1, 20.18.3, 20.19.5, 22.15.0, 22.18.0, 22.20.0, 22.21.1, 24.14.1
108
22:37:57
Available CMake versions: 3.27.1, 4.2.2
109
22:37:57
ccache: 4.12.2
110
22:37:57
clang: 17.0.0, 1700.4.4, 24.6.0
111
22:37:57
CMake version in use: 3.27.1
112
22:37:57
dotnet sdk versions: 7.0.407, 7.0.410, 8.0.203, 8.0.406, 9.0.200, 10.0.103
113
22:37:57
Mono: not available
114
22:37:57
MS Build: not available
115
22:37:57
Xamarin.Android: not available
116
22:37:57
Xamarin.iOS: not available
117
22:37:57
active Xcode version: not available
118
22:37:57
pyenv: 2.4.23
119
22:37:57
uv: 0.7.3
120
22:37:57
Killing Simulator, xcodebuild, clang, node, dotnet and machinelearningtests processes left from previous job
121
22:37:57
$ if ! [[ "$VM_RUNNER" == "true" ]]; then
122
22:37:57
$ export ruby_version=$(cat ./.ruby-version || echo "3.2.1")
123
22:37:57
cat: ./.ruby-version: No such file or directory
124
22:37:57
$ export GEM_HOME=${CI_BUILDS_DIR}/cache/${CI_PROJECT_ID}/${ruby_version}/gem
125
22:37:57
$ export GEM_PATH=${GEM_HOME}
126
22:37:57
$ echo "GEM_HOME=${GEM_HOME}"
127
22:37:57
GEM_HOME=/Volumes/EngData/builds/cache/621/3.2.1/gem
128
22:37:57
$ export PATH=$GEM_HOME/bin:$PATH
129
22:37:57
$ eval "$($HOME/.rbenv/bin/rbenv init - bash)"
130
22:37:57
$ rbenv install $ruby_version -s
131
22:37:57
$ rbenv shell $ruby_version
132
22:37:57
$ rbenv which ruby
133
22:37:57
/Users/scandit/.rbenv/versions/3.2.1/bin/ruby
134
22:37:57
$ gem install bundler
135
22:37:57
Successfully installed bundler-4.0.11
136
22:37:57
Parsing documentation for bundler-4.0.11
137
22:37:57
Installing ri documentation for bundler-4.0.11
138
22:37:57
Done installing documentation for bundler after 0 seconds
139
22:37:57
1 gem installed
140
22:37:57
$ bundle install
141
22:37:58
Fetching gem metadata from https://rubygems.org/........
142
22:37:59
Resolving dependencies...
143
22:37:59
Fetching rake 13.4.2
144
22:37:59
Installing rake 13.4.2
145
22:37:59
Fetching abbrev 0.1.2
146
22:37:59
Fetching addressable 2.9.0
147
22:37:59
Fetching artifactory 3.0.17
148
22:37:59
Fetching public_suffix 7.0.5
149
22:37:59
Fetching aws-eventstream 1.4.0
150
22:37:59
Fetching aws-sigv4 1.12.1
151
22:37:59
Fetching base64 0.2.0
152
22:37:59
Fetching CFPropertyList 3.0.8
153
22:37:59
Fetching atomos 0.1.3
154
22:37:59
Fetching aws-partitions 1.1245.0
155
22:37:59
Fetching bigdecimal 4.1.2
156
22:37:59
Fetching jmespath 1.6.2
157
22:37:59
Fetching logger 1.7.0
158
22:37:59
Fetching aws-sdk-core 3.246.0
159
22:37:59
Fetching aws-sdk-kms 1.124.0
160
22:37:59
Fetching aws-sdk-s3 1.220.0
161
22:37:59
Fetching babosa 1.0.4
162
22:37:59
Fetching benchmark 0.5.0
163
22:37:59
Fetching claide 1.1.0
164
22:37:59
Fetching colored 1.2
165
22:37:59
Fetching colored2 3.1.2
166
22:37:59
Installing bigdecimal 4.1.2 with native extensions
167
22:37:59
Fetching highline 2.0.3
168
22:37:59
Fetching commander 4.6.0
169
22:37:59
Fetching csv 3.3.5
170
22:38:00
Fetching declarative 0.0.20
171
22:38:00
Fetching digest-crc 0.7.0
172
22:38:00
Fetching domain_name 0.6.20240107
173
22:38:00
Fetching dotenv 2.8.1
174
22:38:00
Fetching emoji_regex 3.2.3
175
22:38:00
Fetching excon 0.112.0
176
22:38:00
Fetching faraday-em_http 1.0.0
177
22:38:00
Fetching faraday-em_synchrony 1.0.1
178
22:38:00
Fetching faraday-excon 1.1.0
179
22:38:00
Fetching faraday-httpclient 1.0.1
180
22:38:00
Fetching multipart-post 2.4.1
181
22:38:00
Installing digest-crc 0.7.0 with native extensions
182
22:38:00
Fetching faraday-multipart 1.2.0
183
22:38:00
Fetching faraday-net_http 1.0.2
184
22:38:00
Fetching faraday-net_http_persistent 1.2.0
185
22:38:00
Fetching faraday-patron 1.0.0
186
22:38:00
Fetching faraday-rack 1.0.0
187
22:38:00
Fetching faraday-retry 1.0.4
188
22:38:00
Fetching ruby2_keywords 0.0.5
189
22:38:00
Fetching faraday 1.10.5
190
22:38:00
Fetching http-cookie 1.0.8
191
22:38:00
Fetching faraday-cookie_jar 0.0.8
192
22:38:00
Fetching faraday_middleware 1.2.1
193
22:38:00
Fetching fastimage 2.4.1
194
22:38:00
Fetching fastlane-sirp 1.1.0
195
22:38:00
Fetching gh_inspector 1.1.3
196
22:38:00
Fetching google-cloud-env 2.1.1
197
22:38:00
Fetching jwt 2.10.2
198
22:38:00
Fetching multi_json 1.21.1
199
22:38:00
Fetching os 1.1.4
200
22:38:00
Fetching signet 0.21.0
201
22:38:00
Fetching googleauth 1.11.2
202
22:38:00
Fetching mutex_m 0.3.0
203
22:38:00
Fetching httpclient 2.9.0
204
22:38:00
Fetching mini_mime 1.1.5
205
22:38:00
Fetching trailblazer-option 0.1.2
206
22:38:00
Fetching uber 0.1.0
207
22:38:00
Fetching representable 3.2.0
208
22:38:00
Fetching retriable 3.4.1
209
22:38:00
Fetching google-apis-core 0.18.0
210
22:38:00
Fetching google-apis-androidpublisher_v3 0.99.0
211
22:38:00
Fetching google-apis-playcustomapp_v1 0.17.0
212
22:38:00
Fetching google-apis-iamcredentials_v1 0.27.0
213
22:38:00
Fetching google-apis-storage_v1 0.62.0
214
22:38:00
Fetching google-cloud-errors 1.6.0
215
22:38:00
Fetching google-cloud-core 1.8.0
216
22:38:00
Fetching google-cloud-storage 1.59.0
217
22:38:00
Fetching json 2.19.5
218
22:38:00
Fetching mini_magick 4.13.2
219
22:38:00
Fetching naturally 2.3.0
220
22:38:00
Fetching nkf 0.2.0
221
22:38:00
Fetching optparse 0.8.1
222
22:38:00
Fetching ostruct 0.6.3
223
22:38:00
Fetching plist 3.7.2
224
22:38:00
Fetching rubyzip 2.4.1
225
22:38:00
Fetching security 0.1.5
226
22:38:00
Installing json 2.19.5 with native extensions
227
22:38:00
Fetching simctl 1.6.10
228
22:38:00
Fetching terminal-notifier 2.0.0
229
22:38:00
Fetching unicode-display_width 2.6.0
230
22:38:00
Installing nkf 0.2.0 with native extensions
231
22:38:00
Fetching terminal-table 3.0.2
232
22:38:00
Fetching tty-screen 0.8.2
233
22:38:01
Fetching tty-cursor 0.7.1
234
22:38:01
Fetching tty-spinner 0.9.3
235
22:38:01
Fetching word_wrap 1.0.0
236
22:38:01
Fetching nanaimo 0.4.0
237
22:38:01
Fetching rexml 3.4.4
238
22:38:01
Fetching xcodeproj 1.27.0
239
22:38:01
Fetching rouge 3.28.0
240
22:38:01
Fetching xcpretty 0.4.1
241
22:38:01
Fetching xcpretty-travis-formatter 1.0.1
242
22:38:01
Fetching fastlane 2.233.1
243
22:38:01
Installing abbrev 0.1.2
244
22:38:01
Installing addressable 2.9.0
245
22:38:01
Installing artifactory 3.0.17
246
22:38:01
Installing public_suffix 7.0.5
247
22:38:01
Installing aws-eventstream 1.4.0
248
22:38:01
Installing aws-sigv4 1.12.1
249
22:38:01
Installing base64 0.2.0
250
22:38:01
Installing CFPropertyList 3.0.8
251
22:38:01
Installing atomos 0.1.3
252
22:38:01
Installing aws-partitions 1.1245.0
253
22:38:01
Installing jmespath 1.6.2
254
22:38:01
Installing logger 1.7.0
255
22:38:01
Installing aws-sdk-core 3.246.0
256
22:38:01
Installing aws-sdk-kms 1.124.0
257
22:38:01
Installing babosa 1.0.4
258
22:38:01
Installing aws-sdk-s3 1.220.0
259
22:38:01
Installing benchmark 0.5.0
260
22:38:01
Installing claide 1.1.0
261
22:38:01
Installing colored 1.2
262
22:38:01
Installing colored2 3.1.2
263
22:38:01
Installing highline 2.0.3
264
22:38:01
Installing commander 4.6.0
265
22:38:01
Installing csv 3.3.5
266
22:38:01
Installing declarative 0.0.20
267
22:38:01
Installing domain_name 0.6.20240107
268
22:38:01
Installing dotenv 2.8.1
269
22:38:01
Installing emoji_regex 3.2.3
270
22:38:01
Installing excon 0.112.0
271
22:38:01
Installing faraday-em_http 1.0.0
272
22:38:01
Installing faraday-em_synchrony 1.0.1
273
22:38:01
Installing faraday-excon 1.1.0
274
22:38:01
Installing faraday-httpclient 1.0.1
275
22:38:01
Installing multipart-post 2.4.1
276
22:38:01
Installing faraday-multipart 1.2.0
277
22:38:01
Installing faraday-net_http 1.0.2
278
22:38:01
Installing faraday-net_http_persistent 1.2.0
279
22:38:01
Installing faraday-patron 1.0.0
280
22:38:01
Installing faraday-rack 1.0.0
281
22:38:01
Installing faraday-retry 1.0.4
282
22:38:01
Installing ruby2_keywords 0.0.5
283
22:38:01
Installing faraday 1.10.5
284
22:38:01
Installing http-cookie 1.0.8
285
22:38:01
Installing faraday-cookie_jar 0.0.8
286
22:38:01
Installing faraday_middleware 1.2.1
287
22:38:01
Installing fastimage 2.4.1
288
22:38:01
Installing fastlane-sirp 1.1.0
289
22:38:01
Installing gh_inspector 1.1.3
290
22:38:01
Installing google-cloud-env 2.1.1
291
22:38:01
Installing jwt 2.10.2
292
22:38:01
Installing multi_json 1.21.1
293
22:38:01
Installing os 1.1.4
294
22:38:01
Installing signet 0.21.0
295
22:38:01
Installing googleauth 1.11.2
296
22:38:01
Installing mutex_m 0.3.0
297
22:38:01
Installing httpclient 2.9.0
298
22:38:01
Installing trailblazer-option 0.1.2
299
22:38:01
Installing mini_mime 1.1.5
300
22:38:01
Installing uber 0.1.0
301
22:38:01
Installing retriable 3.4.1
302
22:38:01
Installing google-apis-core 0.18.0
303
22:38:01
Installing representable 3.2.0
304
22:38:01
Installing google-apis-androidpublisher_v3 0.99.0
305
22:38:01
Installing google-apis-playcustomapp_v1 0.17.0
306
22:38:01
Installing google-apis-iamcredentials_v1 0.27.0
307
22:38:01
Installing google-cloud-errors 1.6.0
308
22:38:01
Installing google-apis-storage_v1 0.62.0
309
22:38:01
Installing google-cloud-core 1.8.0
310
22:38:01
Installing google-cloud-storage 1.59.0
311
22:38:01
Installing mini_magick 4.13.2
312
22:38:01
Installing naturally 2.3.0
313
22:38:01
Installing optparse 0.8.1
314
22:38:01
Installing ostruct 0.6.3
315
22:38:01
Installing rubyzip 2.4.1
316
22:38:01
Installing plist 3.7.2
317
22:38:01
Installing security 0.1.5
318
22:38:01
Installing simctl 1.6.10
319
22:38:01
Installing terminal-notifier 2.0.0
320
22:38:01
Installing unicode-display_width 2.6.0
321
22:38:01
Installing terminal-table 3.0.2
322
22:38:01
Installing tty-screen 0.8.2
323
22:38:01
Installing tty-cursor 0.7.1
324
22:38:01
Installing tty-spinner 0.9.3
325
22:38:01
Installing word_wrap 1.0.0
326
22:38:01
Installing nanaimo 0.4.0
327
22:38:01
Installing rexml 3.4.4
328
22:38:01
Installing xcodeproj 1.27.0
329
22:38:01
Installing xcpretty-travis-formatter 1.0.1
330
22:38:01
Installing rouge 3.28.0
331
22:38:01
Installing xcpretty 0.4.1
332
22:38:02
Installing fastlane 2.233.1
333
22:38:08
Bundle complete! 1 Gemfile dependency, 95 gems now installed.
334
22:38:08
Use `bundle info [gemname]` to see where a bundled gem is installed.
335
22:38:08
Post-install message from rubyzip:
336
22:38:08
RubyZip 3.0 is coming!
337
22:38:08
**********************
338
22:38:08
339
22:38:08
The public API of some Rubyzip classes has been modernized to use named
340
22:38:08
parameters for optional arguments. Please check your usage of the
341
22:38:08
following classes:
342
22:38:08
* `Zip::File`
343
22:38:08
* `Zip::Entry`
344
22:38:08
* `Zip::InputStream`
345
22:38:08
* `Zip::OutputStream`
346
22:38:08
* `Zip::DOSTime`
347
22:38:08
348
22:38:08
Run your test suite with the `RUBYZIP_V3_API_WARN` environment
349
22:38:08
variable set to see warnings about usage of the old API. This will
350
22:38:08
help you to identify any changes that you need to make to your code.
351
22:38:08
See https://github.com/rubyzip/rubyzip/wiki/Updating-to-version-3.x for
352
22:38:08
more information.
353
22:38:08
354
22:38:08
Please ensure that your Gemfiles and .gemspecs are suitably restrictive
355
22:38:08
to avoid an unexpected breakage when 3.0 is released (e.g. ~> 2.3.0).
356
22:38:08
See https://github.com/rubyzip/rubyzip for details. The Changelog also
357
22:38:08
lists other enhancements and bugfixes that have been implemented since
358
22:38:08
version 2.3.0.
359
22:38:08
$ rbenv rehash
360
22:38:08
$ fi
361
22:38:08
$ bundle info fastlane
362
22:38:08
* fastlane (2.233.1)
363
22:38:08
Summary: The easiest way to build and release mobile apps.
364
22:38:08
Homepage: https://fastlane.tools
365
22:38:08
Documentation: https://docs.fastlane.tools/
366
22:38:08
Source Code: https://github.com/fastlane/fastlane
367
22:38:08
Changelog: https://github.com/fastlane/fastlane/releases
368
22:38:08
Bug Tracker: https://github.com/fastlane/fastlane/issues
369
22:38:08
Path: /Volumes/EngData/builds/cache/621/3.2.1/gem/gems/fastlane-2.233.1
370
22:38:08
section_end:1778020688:step_script
371
22:38:08
+section_start:1778020688:cleanup_file_variables
372
22:38:08
+Cleaning up project directory and file based variables
373
22:38:08
section_end:1778020688:cleanup_file_variables
374
22:38:08
+
375
22:38:08
Job succeeded
376