mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-02 03:40:16 +00:00
1480a5292b
* Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (Automation/TC) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (GitHub Workflows) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (GitHub Workflows) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (GitHub Issue Templates) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (Jenkins) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (README & Documentation) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (Jenkins) * Fixes https://github.com/mozilla-mobile/fenix/issues/11427 - Rename master branch to main (Random)
54 lines
1.5 KiB
Groovy
54 lines
1.5 KiB
Groovy
pipeline {
|
|
agent any
|
|
triggers {
|
|
cron(env.BRANCH_NAME == 'main' ? 'H 0 * * *' : '')
|
|
}
|
|
options {
|
|
timestamps()
|
|
timeout(time: 1, unit: 'HOURS')
|
|
}
|
|
stages {
|
|
stage('test') {
|
|
when { branch 'main' }
|
|
steps {
|
|
dir('app/src/androidTest/java/org/mozilla/fenix/syncIntegration') {
|
|
sh 'pipenv install'
|
|
sh 'pipenv check'
|
|
sh 'pipenv run pytest'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
script {
|
|
if (env.BRANCH_NAME == 'main') {
|
|
publishHTML(target: [
|
|
allowMissing: false,
|
|
alwaysLinkToLastBuild: true,
|
|
keepAll: true,
|
|
reportDir: 'app/src/androidTest/java/org/mozilla/fenix/syncintegration/results',
|
|
reportFiles: 'index.html',
|
|
reportName: 'HTML Report'])
|
|
}
|
|
}
|
|
}
|
|
|
|
failure {
|
|
script {
|
|
if (env.BRANCH_NAME == 'main') {
|
|
slackSend(
|
|
color: 'danger',
|
|
message: "FAILED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL}HTML_20Report/)")
|
|
}
|
|
}
|
|
}
|
|
|
|
fixed {
|
|
slackSend(
|
|
color: 'good',
|
|
message: "FIXED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]' (${env.BUILD_URL}HTML_20Report/)")
|
|
}
|
|
}
|
|
}
|