From cb62b972edc5090c3f3e51da936d9993e90ac007 Mon Sep 17 00:00:00 2001 From: Nils Wentzell <nwentzell@flatironinstitute.org> Date: Tue, 1 Mar 2022 14:43:44 -0500 Subject: [PATCH] [jenkins] Manually set triqsBranch to 3.1.x --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4b91cf3..a44f4f7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ def dockerName = projectName.toLowerCase(); /* which platform to build documentation on */ def documentationPlatform = "ubuntu-clang" /* depend on triqs upstream branch/project */ -def triqsBranch = env.CHANGE_TARGET ?: env.BRANCH_NAME +def triqsBranch = "3.1.x" def triqsProject = '/TRIQS/triqs/' + triqsBranch.replaceAll('/', '%2F') /* whether to keep and publish the results */ def keepInstall = !env.BRANCH_NAME.startsWith("PR-")