You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ib...@apache.org on 2020/02/03 19:22:56 UTC

[beam] branch master updated: [BEAM-9234] Avoid using unreleased versions of PerfKitBenchmarker

This is an automated email from the ASF dual-hosted git repository.

ibzib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new c1156fb  [BEAM-9234] Avoid using unreleased versions of PerfKitBenchmarker
     new 50092b7  Merge pull request #10753 from kamilwu/python-wordcountIT-fix
c1156fb is described below

commit c1156fbe88b1e3e4cad967fdb4b3c44b6e4b7280
Author: Kamil Wasilewski <ka...@polidea.com>
AuthorDate: Mon Feb 3 15:28:55 2020 +0100

    [BEAM-9234] Avoid using unreleased versions of PerfKitBenchmarker
---
 .test-infra/jenkins/CommonJobProperties.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.test-infra/jenkins/CommonJobProperties.groovy b/.test-infra/jenkins/CommonJobProperties.groovy
index 001e1b8..df3b0f2 100644
--- a/.test-infra/jenkins/CommonJobProperties.groovy
+++ b/.test-infra/jenkins/CommonJobProperties.groovy
@@ -311,7 +311,7 @@ class CommonJobProperties {
         shell("${perfkit_env}/bin/pip install --upgrade setuptools pip")
 
         // Clone appropriate perfkit branch
-        shell("git clone https://github.com/GoogleCloudPlatform/PerfKitBenchmarker.git ${perfkit_root}")
+        shell("git clone --single-branch --branch=v1.14.0 https://github.com/GoogleCloudPlatform/PerfKitBenchmarker.git ${perfkit_root}")
 
         // Install Perfkit benchmark requirements.
         shell("${perfkit_env}/bin/pip install -r ${perfkit_root}/requirements.txt")