You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* attempt to fix the mac os builds
* remove debug prints
* disable Mac stage for now as it is broken
- it takes 4h to run a 10 seconds cmake configure!
- re-enable the Mac stage when we find the issue
- comment out linux32bit and mac ssh uploads
Copy file name to clipboardExpand all lines: Jenkinsfile
+49-11Lines changed: 49 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,9 @@ pipeline {
9
9
}
10
10
parameters {
11
11
booleanParam(name: 'MSVC64', defaultValue: true, description: 'Build with MSVC64 (often hangs)')
12
+
booleanParam(name: 'LINUX', defaultValue: true, description: 'Build with LINUX')
12
13
booleanParam(name: 'MINGW_UCRT64', defaultValue: true, description: 'Build with MINGW/UCRT64')
14
+
booleanParam(name: 'MINGW_UCRT64_CLANG', defaultValue: true, description: 'Build with MINGW/UCRT64 with clang')
13
15
booleanParam(name: 'MACOS_ARM64', defaultValue: false, description: 'Build with macOS-arm64 (M1 mac)')
14
16
booleanParam(name: 'LINUX64_ASAN', defaultValue: false, description: 'Build with linux64 asan')
15
17
booleanParam(name: 'SUBMODULE_UPDATE', defaultValue: false, description: 'Allow pull request to update submodules (disabled by default due to common user errors)')
0 commit comments