Skip to content

Commit b9e8569

Browse files
committed
Merge remote-tracking branch 'upstream/master' into dev/v13.x
2 parents 21f6407 + 4ba79c0 commit b9e8569

File tree

3 files changed

+5
-21
lines changed

3 files changed

+5
-21
lines changed

.github/workflows/merge_build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
push:
66
branches:
77
- dev/v13.x
8+
- stable/v12.x
9+
- master
810

911
jobs:
1012
Build:

.github/workflows/pr_build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
pull_request:
66
branches:
77
- dev/v13.x
8+
- stable/v12.x
9+
- master
810

911
jobs:
1012
Build:

.jenkins/Jenkinsfile

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,10 @@ pipeline {
66
CONAN_USER = 'oss'
77
TARGET_BRANCH = 'master'
88
STABLE_BRANCH = 'stable/v*'
9+
BUILD_MISSING = "--build missing"
910
}
1011

1112
stages {
12-
stage('Adjust for Master/PR') {
13-
when { not {
14-
branch "${STABLE_BRANCH}"
15-
} }
16-
steps {
17-
script {
18-
BUILD_MISSING = "--build missing"
19-
}
20-
}
21-
}
22-
stage('Adjust for Testing/Stable') {
23-
when {
24-
branch "${STABLE_BRANCH}"
25-
}
26-
steps {
27-
script {
28-
BUILD_MISSING = ""
29-
}
30-
}
31-
}
32-
3313
stage('Get Version') {
3414
steps {
3515
script {

0 commit comments

Comments
 (0)