use regular CI linux hosts for end-to-end tests

Signed-off-by: Jakub Sokołowski <jakub@status.im>
Signed-off-by: Serhy <sergii@status.im>
This commit is contained in:
Jakub Sokołowski 2019-11-29 17:05:18 +01:00 committed by Serhy
parent 577e699405
commit d930c51dfa
No known key found for this signature in database
GPG Key ID: 5D7C4B9E2B6F500B
2 changed files with 16 additions and 2 deletions

View File

@ -1,6 +1,6 @@
pipeline { pipeline {
agent { label 'linux1' } agent { label 'linux' }
parameters { parameters {
string( string(
@ -20,6 +20,13 @@ pipeline {
stages { stages {
stage('Setup') {
steps { script {
dir('test/appium') {
sh 'pip3 install --user -r requirements.txt'
}
} }
}
stage('Test') { stage('Test') {
steps { steps {
withCredentials([ withCredentials([

View File

@ -1,6 +1,6 @@
pipeline { pipeline {
agent { label 'linux1' } agent { label 'linux' }
parameters { parameters {
string( string(
@ -33,6 +33,13 @@ pipeline {
} }
stages { stages {
stage('Setup') {
steps { script {
dir('test/appium') {
sh 'pip3 install --user -r requirements.txt'
}
} }
}
stage('Test') { stage('Test') {
steps { script { steps { script {
currentBuild.displayName = "PR-${params.PR_ID}" currentBuild.displayName = "PR-${params.PR_ID}"