Skip to content

Commit 7c13dfd

Browse files
committed
Allow macOS Intel test failures
The current Intel macOS builder seems to be having issues completing the tests in time, so mark the test as allow_fail so that it doesn't holding up PR merging, etc.
1 parent bb3866f commit 7c13dfd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.drone.jsonnet

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,8 @@ local mac_builder(name,
255255
local_mirror=true,
256256
jobs=6,
257257
tests=true,
258-
allow_fail=false)
258+
allow_fail=false,
259+
allow_test_fail=false)
259260
= mac_pipeline(name, arch=arch, allow_fail=allow_fail, build=[
260261
'mkdir build',
261262
'cd build',
@@ -271,7 +272,7 @@ local mac_builder(name,
271272
(if tests then
272273
[{
273274
name: 'tests',
274-
[if allow_fail then 'failure']: 'ignore',
275+
[if (allow_fail || allow_test_fail) then 'failure']: 'ignore',
275276
commands: [
276277
'cd build',
277278
'./tests/testLogging --colour-mode ansi -d yes',
@@ -365,7 +366,7 @@ local static_build(name,
365366
debian_build('Debian stable (armhf)', docker_base + 'debian-stable/arm32v7', arch='arm64', jobs=4),
366367

367368
// Macos builds:
368-
mac_builder('macOS Intel (Release)'),
369+
mac_builder('macOS Intel (Release)', allow_test_fail=true/*the current intel mac has issues*/),
369370
mac_builder('macOS Arm64 (Release)', arch='arm64'),
370371
mac_builder('macOS Arm64 (Debug)', arch='arm64', build_type='Debug'),
371372

0 commit comments

Comments
 (0)