Skip to content

Commit

Permalink
[ci] Fix iOS jobs
Browse files Browse the repository at this point in the history
Set emscripten cache location explicitly.
Only run renew certs on the intel mac until the new one is ready.
  • Loading branch information
charlag committed Dec 13, 2024
1 parent c9a0a15 commit 20b10bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions ci/Ios.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ pipeline {
when { expression { return params.STAGING } }
environment {
PATH="${env.NODE_MAC_PATH}:${env.PATH}:${env.HOME}/emsdk:${env.HOME}/emsdk/upstream/emscripten:${env.HOME}/emsdk/upstream/bin"
EM_CACHE="${env.HOME}/emcache"
}
agent {
label 'mac-intel'
Expand All @@ -97,6 +98,7 @@ pipeline {
when { expression { return params.PROD } }
environment {
PATH="${env.NODE_MAC_PATH}:${env.PATH}:${env.HOME}/emsdk:${env.HOME}/emsdk/upstream/emscripten:${env.HOME}/emsdk/upstream/bin"
EM_CACHE="${env.HOME}/emcache"
}
agent {
label 'mac-intel'
Expand Down
6 changes: 3 additions & 3 deletions ci/IosRenewCerts.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pipeline {
LANG = "en_US.UTF-8"
}
agent {
label 'mac'
label 'mac-intel'
}

parameters {
Expand All @@ -31,7 +31,7 @@ pipeline {
stages {
stage("Renew prod certs") {
agent {
label 'mac'
label 'mac-intel'
}
when {
expression{ return params.prod }
Expand Down Expand Up @@ -88,7 +88,7 @@ pipeline {

stage("Renew staging certs") {
agent {
label 'mac'
label 'mac-intel'
}
when {
expression { return params.staging }
Expand Down

0 comments on commit 20b10bc

Please sign in to comment.