Skip to content

Commit e8dca48

Browse files
committed
debug: set env var in build stage
1 parent 8e72c4c commit e8dca48

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ci/Jenkinsfile.macos

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ pipeline {
5555
NPROC = Runtime.getRuntime().availableProcessors()
5656
MAKEFLAGS = "V=${params.VERBOSITY} NIM_COMMIT=${params.NIM_COMMIT} -j${env.NPROC}"
5757
XDG_CACHE_HOME = "${env.WORKSPACE_TMP}/.cache"
58-
// Workaround for clang assember https://github.com/OffchainLabs/hashtree/issues/18
59-
CFLAGS = "-fno-integrated-as"
6058
}
6159

6260
stages {
@@ -87,6 +85,10 @@ pipeline {
8785
}
8886

8987
stage('Build') {
88+
environment {
89+
// Workaround for clang assember https://github.com/OffchainLabs/hashtree/issues/18
90+
CFLAGS = "-fno-integrated-as"
91+
}
9092
steps { timeout(50) {
9193
sh 'make LOG_LEVEL=TRACE'
9294
} }

0 commit comments

Comments
 (0)