From f1227e52f6e757665ac1c2cb0956a1d853fdf1c7 Mon Sep 17 00:00:00 2001 From: Brian Ward Date: Tue, 12 Sep 2023 15:16:12 -0400 Subject: [PATCH] Run on branch --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d46766f82..397b81235 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,7 +29,7 @@ def checkCompilation(String testsPath, String stancFlags = ""){ unstash 'ubuntu-exe' sh """ - git clone --recursive --depth 50 https://github.com/stan-dev/performance-tests-cmdstan + git clone --recursive --depth 50 https://github.com/stan-dev/performance-tests-cmdstan --branch=fix/checkCompilation """ writeFile(file:"performance-tests-cmdstan/cmdstan/make/local", text:"CXX=${CXX}") @@ -54,7 +54,7 @@ def checkCompilation(String testsPath, String stancFlags = ""){ echo 'O=0' >> make/local echo 'CXXFLAGS+=-Wall' >> make/local make -j${env.PARALLEL} build; cd .. - python ./checkCompilation.py -j${env.PARALLEL} ${testsPath} + python ./checkCompilation.py -j${env.PARALLEL} --syntax-only ${testsPath} """ }