diff --git a/Jenkinsfile b/Jenkinsfile index cab140155..e898edc0c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -82,7 +82,7 @@ pipeline { } stage('macOS') { agent { - label 'built-in' + label 'm1' } steps { script { @@ -214,7 +214,7 @@ pipeline { axes { axis { name 'AGENT' - values 'built-in', 'linuxbuild' + values 'm1', 'linuxbuild' } } agent { @@ -405,7 +405,7 @@ EOF } } agent { - label 'built-in' + label 'm1' } steps { withCredentials([ string( credentialsId: 'ios-github', variable: 'accessToken' ) ]) { @@ -454,7 +454,7 @@ EOF } success { - node( 'built-in' ) { + node( 'm1' ) { withCredentials([ string( credentialsId: 'wire-jenkinsbot', variable: 'jenkinsbot_secret' ) ]) { wireSend secret: "$jenkinsbot_secret", message: "✅ ${JOB_NAME} #${BUILD_ID} succeeded\n**Changelog:**\n${changelog}\n${BUILD_URL}console\nhttps://github.com/wireapp/wire-avs/commit/${commitId}" } @@ -462,7 +462,7 @@ EOF } failure { - node( 'built-in' ) { + node( 'm1' ) { withCredentials([ string( credentialsId: 'wire-jenkinsbot', variable: 'jenkinsbot_secret' ) ]) { wireSend secret: "$jenkinsbot_secret", message: "❌ ${JOB_NAME} #${BUILD_ID} failed\n${BUILD_URL}console\nhttps://github.com/wireapp/wire-avs/commit/${commitId}" }