Skip to content

Commit 6e3651b

Browse files
fix
1 parent 2093a1e commit 6e3651b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Jenkinsfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def deviceStage(String stageName, String deviceType, List extra_env, def steps)
9191
device(device_ip, "git checkout", extra + "\n" + readFile("selfdrive/test/setup_device_ci.sh"))
9292
}
9393
steps.each { item ->
94-
if (branch != "master" && item.size() == 3 && !hasPathChanged(item[2])) {
94+
if (branch != "master" && branch != "jenkins_test_runner" && item.size() == 3 && !hasPathChanged(item[2])) {
9595
println "Skipping ${item[0]}: no changes in ${item[2]}."
9696
return;
9797
} else {
@@ -164,13 +164,13 @@ node {
164164
'testing-closet*', 'hotfix-*']
165165
def excludeRegex = excludeBranches.join('|').replaceAll('\\*', '.*')
166166

167-
if (env.BRANCH_NAME != 'master' && env.BRANCH_NAME != '__jenkins_stress') {
167+
if (env.BRANCH_NAME != 'master' && env.BRANCH_NAME != 'jenkins_test_runner') {
168168
properties([
169169
disableConcurrentBuilds(abortPrevious: true)
170170
])
171171
}
172172

173-
if (env.BRANCH_NAME == 'jenkins_stress_NOT_NOW') {
173+
if (env.BRANCH_NAME == 'jenkins_test_master') {
174174
sh '''#!/bin/bash
175175
# get crumb for CSRF
176176
COOKIE_JAR=/tmp/cookies

0 commit comments

Comments
 (0)