2019-10-10 17:38:50 +00:00
|
|
|
pipeline {
|
|
|
|
|
2019-11-29 16:05:18 +00:00
|
|
|
agent { label 'linux' }
|
2019-10-10 17:38:50 +00:00
|
|
|
|
|
|
|
parameters {
|
|
|
|
string(
|
|
|
|
name: 'BRANCH_NAME',
|
|
|
|
description: 'Name of the branch to checkout and build.',
|
|
|
|
defaultValue: 'develop',
|
|
|
|
)
|
|
|
|
string(
|
|
|
|
name: 'NETWORK',
|
|
|
|
description: 'Name of test network to use.',
|
|
|
|
defaultValue: 'ropsten',
|
|
|
|
)
|
|
|
|
string(
|
|
|
|
name: 'TEST_MARKERS',
|
|
|
|
description: 'Marker expression for matching tests to run.',
|
|
|
|
defaultValue: 'critical or high',
|
|
|
|
)
|
|
|
|
string(
|
|
|
|
name: 'APK_NAME',
|
|
|
|
description: 'Filename of APK uploaded to SauceLabs, path, or URL.',
|
|
|
|
)
|
|
|
|
string(
|
|
|
|
name: 'PR_ID',
|
|
|
|
description: 'ID of the Pull Request triggering this build.',
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
options {
|
|
|
|
disableConcurrentBuilds()
|
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
2019-11-29 16:05:18 +00:00
|
|
|
stage('Setup') {
|
|
|
|
steps { script {
|
|
|
|
dir('test/appium') {
|
|
|
|
sh 'pip3 install --user -r requirements.txt'
|
|
|
|
}
|
|
|
|
} }
|
|
|
|
}
|
2019-10-10 17:38:50 +00:00
|
|
|
stage('Test') {
|
|
|
|
steps { script {
|
|
|
|
currentBuild.displayName = "PR-${params.PR_ID}"
|
|
|
|
|
|
|
|
withCredentials([
|
|
|
|
string(
|
|
|
|
credentialsId: 'GIT_HUB_TOKEN',
|
|
|
|
variable: 'GIT_HUB_TOKEN'
|
|
|
|
),
|
|
|
|
usernamePassword(
|
|
|
|
credentialsId: 'test-rail-api',
|
|
|
|
usernameVariable: 'TESTRAIL_USER',
|
|
|
|
passwordVariable: 'TESTRAIL_PASS'
|
|
|
|
),
|
|
|
|
usernamePassword(
|
|
|
|
credentialsId: 'sauce-labs-api',
|
|
|
|
usernameVariable: 'SAUCE_USERNAME',
|
|
|
|
passwordVariable: 'SAUCE_ACCESS_KEY'
|
|
|
|
),
|
|
|
|
]) {
|
|
|
|
dir('test/appium/tests') {
|
|
|
|
sh """
|
|
|
|
python3 -m pytest -n24 \
|
|
|
|
--rerun_count=2 \
|
|
|
|
--testrail_report=True \
|
|
|
|
-m "${params.TEST_MARKERS}" \
|
|
|
|
--network=${params.NETWORK} \
|
|
|
|
--apk=${params.APK_NAME} \
|
|
|
|
--build=PR-${params.PR_ID} \
|
|
|
|
--pr_number=${params.PR_ID}
|
|
|
|
"""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|