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 {
|
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([
|
||||||
|
|
|
@ -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}"
|
||||||
|
|
Loading…
Reference in New Issue