Created
May 6, 2021 08:05
-
-
Save sergicastellsague/92f1a50797ac29fe8858f81cc80ffb40 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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