We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e72c4c commit d95ff7fCopy full SHA for d95ff7f
ci/Jenkinsfile.macos
@@ -54,9 +54,7 @@ pipeline {
54
environment {
55
NPROC = Runtime.getRuntime().availableProcessors()
56
MAKEFLAGS = "V=${params.VERBOSITY} NIM_COMMIT=${params.NIM_COMMIT} -j${env.NPROC}"
57
- XDG_CACHE_HOME = "${env.WORKSPACE_TMP}/.cache"
58
- // Workaround for clang assember https://github.com/OffchainLabs/hashtree/issues/18
59
- CFLAGS = "-fno-integrated-as"
+ XDG_CACHE_HOME = "${env.WORKSPACE_TMP}/.cache"
60
}
61
62
stages {
@@ -88,6 +86,8 @@ pipeline {
88
86
89
87
stage('Build') {
90
steps { timeout(50) {
+ // Workaround for clang assember https://github.com/OffchainLabs/hashtree/issues/18
+ env.CFLAGS = "-fno-integrated-as"
91
sh 'make LOG_LEVEL=TRACE'
92
} }
93
0 commit comments