Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Mar 27, 2023
1 parent 20b1131 commit 55aad78
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ stage('prep') {
branches = [failFast: !fullTest]
lines.each {line ->
plugins.each { plugin ->
if (plugin != 'workflow-cps') {
return
}
branches["pct-$plugin-$line"] = {
def jdk = line == 'weekly' ? 17 : 11
mavenEnv(jdk: jdk) {
Expand Down
3 changes: 2 additions & 1 deletion bom-weekly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
<scm-api-plugin.version>631.v9143df5b_e4a_a</scm-api-plugin.version>
<subversion-plugin.version>2.17.1</subversion-plugin.version>
<workflow-api-plugin.version>1208.v0cc7c6e0da_9e</workflow-api-plugin.version>
<workflow-cps-plugin.version>3641.vf58904a_b_b_5d8</workflow-cps-plugin.version>
<!-- TODO https://github.com/jenkinsci/workflow-cps-plugin/pull/689 -->
<workflow-cps-plugin.version>3649.v2f01e244c0cf</workflow-cps-plugin.version>
<workflow-job-plugin.version>1284.v2fe8ed4573d4</workflow-job-plugin.version>
<workflow-multibranch-plugin.version>733.v109046189126</workflow-multibranch-plugin.version>
<workflow-step-api-plugin.version>639.v6eca_cd8c04a_a_</workflow-step-api-plugin.version>
Expand Down
3 changes: 2 additions & 1 deletion prep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ for LINE in $LINEZ; do
done

# Tracked by ./updatecli/updatecli.d/plugin-compat-tester.yml
version=1286.v5a_54b_fd87db_f
# TODO https://ci.jenkins.io/job/jenkinsci-libraries/job/plugin-compat-tester/job/multimodule/
version=1304.vf5cc03166a_9c
pct="$($MVN -Dset.changelist -Dexpression=settings.localRepository -q -DforceStdout help:evaluate)/org/jenkins-ci/tests/plugins-compat-tester-cli/${version}/plugins-compat-tester-cli-${version}.jar"
[ -f "${pct}" ] || $MVN dependency:get -Dartifact=org.jenkins-ci.tests:plugins-compat-tester-cli:${version}:jar -DremoteRepositories=repo.jenkins-ci.org::default::https://repo.jenkins-ci.org/public/,incrementals::default::https://repo.jenkins-ci.org/incrementals/ -Dtransitive=false
cp "${pct}" target/pct.jar
Expand Down

0 comments on commit 55aad78

Please sign in to comment.