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 e8dca48Copy full SHA for e8dca48
ci/Jenkinsfile.macos
@@ -55,8 +55,6 @@ pipeline {
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"
60
}
61
62
stages {
@@ -87,6 +85,10 @@ pipeline {
87
85
88
86
89
stage('Build') {
+ environment {
+ // Workaround for clang assember https://github.com/OffchainLabs/hashtree/issues/18
90
+ CFLAGS = "-fno-integrated-as"
91
+ }
92
steps { timeout(50) {
93
sh 'make LOG_LEVEL=TRACE'
94
} }
0 commit comments