You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
838 B
Groovy
36 lines
838 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
triggers {
|
|
cron('H 8 * * *')
|
|
}
|
|
|
|
stages {
|
|
stage('dependencies') {
|
|
steps {
|
|
sh 'npm i'
|
|
}
|
|
}
|
|
stage('cypress parallel tests') {
|
|
environment {
|
|
CYPRESS_RECORD_KEY = credentials('cypress-example-record-key')
|
|
CYPRESS_PROJECT_ID = credentials('cypress-example-project-id')
|
|
CYPRESS_trashAssetsBeforeRuns = 'false'
|
|
}
|
|
|
|
parallel {
|
|
stage('machine 1') {
|
|
steps {
|
|
sh "npm run cy:ci"
|
|
}
|
|
}
|
|
|
|
stage('machine 2') {
|
|
steps {
|
|
sh "npm run cy:ci"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |