From d930c51dfa4ebbb3bbf6cd86c0c0c493f8a2c834 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 29 Nov 2019 17:05:18 +0100 Subject: [PATCH] use regular CI linux hosts for end-to-end tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski Signed-off-by: Serhy --- ci/tests/Jenkinsfile.e2e-nightly | 9 ++++++++- ci/tests/Jenkinsfile.e2e-prs | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/ci/tests/Jenkinsfile.e2e-nightly b/ci/tests/Jenkinsfile.e2e-nightly index 7b815b0e9f..927ec0f1d9 100644 --- a/ci/tests/Jenkinsfile.e2e-nightly +++ b/ci/tests/Jenkinsfile.e2e-nightly @@ -1,6 +1,6 @@ pipeline { - agent { label 'linux1' } + agent { label 'linux' } parameters { string( @@ -20,6 +20,13 @@ pipeline { stages { + stage('Setup') { + steps { script { + dir('test/appium') { + sh 'pip3 install --user -r requirements.txt' + } + } } + } stage('Test') { steps { withCredentials([ diff --git a/ci/tests/Jenkinsfile.e2e-prs b/ci/tests/Jenkinsfile.e2e-prs index 7bc96ea608..d20dc7c9fc 100644 --- a/ci/tests/Jenkinsfile.e2e-prs +++ b/ci/tests/Jenkinsfile.e2e-prs @@ -1,6 +1,6 @@ pipeline { - agent { label 'linux1' } + agent { label 'linux' } parameters { string( @@ -33,6 +33,13 @@ pipeline { } stages { + stage('Setup') { + steps { script { + dir('test/appium') { + sh 'pip3 install --user -r requirements.txt' + } + } } + } stage('Test') { steps { script { currentBuild.displayName = "PR-${params.PR_ID}"