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:
parent
577e699405
commit
d930c51dfa
|
@ -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([
|
||||
|
|
|
@ -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}"
|
||||
|
|
Loading…
Reference in New Issue