diff --git a/Jenkinsfile b/Jenkinsfile index f86222b..e3c9b2d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,24 +1,27 @@ +def implementations = ['chibi'] def tests = ['primitives'] pipeline { agent { dockerfile { filename 'Dockerfile.jenkins' - args '--user=root -v /var/run/docker.sock:/var/run/docker.sock' + args '--user=root -v /var/run/docker.sock:/var/run/docker.sock' } } options { disableConcurrentBuilds() - buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10')) + buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10')) } stages { - stage('chibi') { + stage('Testing') { steps { script { - for (int i = 0; i < tests.size(); ++i) { - echo "Testing the ${test[i]}" + implementations.each { implementations -> + stage("Testing to ${implementation}") { + echo "Testing" + } } } }