https://github.com/carla-simulator/carla
Revision 9e1e98f6ad36d9523d7ca333e9db4a5a1d086824 authored by Anshul Paigwar on 10 January 2019, 10:13:32 UTC, committed by GitHub on 10 January 2019, 10:13:32 UTC
Many people having the error of `Carla module not found` it is mainly bcoz python could not find the Carla Python API. Installation of Python API is missing in the documentation.
1 parent d8247fa
Raw File
Tip revision: 9e1e98f6ad36d9523d7ca333e9db4a5a1d086824 authored by Anshul Paigwar on 10 January 2019, 10:13:32 UTC
Update getting_started.md
Tip revision: 9e1e98f
Jenkinsfile
pipeline {
    agent any

    environment {
        UE4_ROOT = '/var/lib/jenkins/UnrealEngine_4.19'
    }

    options {
        buildDiscarder(logRotator(numToKeepStr: '3', artifactNumToKeepStr: '3'))
    }

    stages {

        stage('Setup') {
            steps {
                sh 'make setup'
                sh './Update.sh'
            }
        }

        stage('Build') {
            steps {
                sh 'make LibCarla'
                sh 'make PythonAPI'
                sh 'make CarlaUE4Editor'
            }
            post {
                always {
                    archiveArtifacts 'PythonAPI/dist/*.egg'
                }
            }
        }

        stage('Unit Tests') {
            steps {
                sh 'make check ARGS="--all --xml"'
            }
            post {
                always {
                    junit 'Build/test-results/*.xml'
                    archiveArtifacts 'profiler.csv'
                }
            }
        }

        stage('Package') {
            steps {
                sh 'make package'
            }
            post {
                always {
                    archiveArtifacts 'Dist/*.tar.gz'
                }
            }
        }

    }

    post {
        always {
            deleteDir()
        }
    }
}
back to top