Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sergicastellsague/92f1a50797ac29fe8858f81cc80ffb40 to your computer and use it in GitHub Desktop.
Save sergicastellsague/92f1a50797ac29fe8858f81cc80ffb40 to your computer and use it in GitHub Desktop.
stage('Run tests in parallel') {
parallel {
stage('SE Tests 1 / 5') {
agent {
docker {
registryCredentialsId 'REGISTRY_CREDENTIALS'
image env.DOCKER_IMAGE_NAME
registryUrl 'https://private_registry'
args "-u root:root -m 4300m --cpus='1.5'"
}
}
steps {
runTests()
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment