From b2174329445667d2c0037f5c5bdc71859ea27b4e Mon Sep 17 00:00:00 2001 From: bernat Date: Fri, 31 Jul 2020 21:54:52 +0200 Subject: [PATCH] Remove smoke testes (temporally) --- Jenkinsfile | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 726df0259..54c4fa0a1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -102,52 +102,6 @@ pipeline stash includes: 'Dist/CARLA*.tar.gz', name: 'ubuntu_package' stash includes: 'Examples/', name: 'ubuntu_examples' } - success - { - node('master') - { - script - { - JOB_ID = "${env.BUILD_TAG}" - jenkinsLib = load("/home/jenkins/jenkins.groovy") - - jenkinsLib.CreateUbuntuTestNode(JOB_ID) - } - } - } - } - } - stage('ubuntu smoke tests') - { - agent { label "ubuntu && gpu && ${JOB_ID}" } - steps - { - unstash name: 'ubuntu_eggs' - unstash name: 'ubuntu_package' - unstash name: 'ubuntu_examples' - sh 'tar -xvzf Dist/CARLA*.tar.gz -C Dist/' - sh 'DISPLAY= ./Dist/CarlaUE4.sh -opengl --carla-rpc-port=3654 --carla-streaming-port=0 -nosound > CarlaUE4.log &' - sh 'make smoke_tests ARGS="--xml"' - sh 'make run-examples ARGS="localhost 3654"' - } - post - { - always - { - archiveArtifacts 'CarlaUE4.log' - junit 'Build/test-results/smoke-tests-*.xml' - deleteDir() - node('master') - { - script - { - JOB_ID = "${env.BUILD_TAG}" - jenkinsLib = load("/home/jenkins/jenkins.groovy") - - jenkinsLib.DeleteUbuntuTestNode(JOB_ID) - } - } - } } } stage('ubuntu deploy')