[zorg] r373959 - [LLDB] Add LLVM 9 to the Matrix bot

Jonas Devlieghere via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 7 13:43:07 PDT 2019


Author: jdevlieghere
Date: Mon Oct  7 13:43:07 2019
New Revision: 373959

URL: http://llvm.org/viewvc/llvm-project?rev=373959&view=rev
Log:
[LLDB] Add LLVM 9 to the Matrix bot

Modified:
    zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix

Modified: zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix?rev=373959&r1=373958&r2=373959&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix (original)
+++ zorg/trunk/zorg/jenkins/jobs/jobs/lldb-cmake-matrix Mon Oct  7 13:43:07 2019
@@ -174,16 +174,16 @@ pipeline {
                 junit 'test/results.xml'
             }
         }
-        stage('Build Clang 6.0.1') {
+        stage('Build Clang 7.0.1') {
             steps {
-                dir('clang_601') {
-                    checkout([$class: 'GitSCM', branches: [[name: "llvmorg-6.0.1"]], userRemoteConfigs: [[url: 'http://labmaster3.local/git/llvm-project.git']]])
+                dir('clang_701') {
+                    checkout([$class: 'GitSCM', branches: [[name: "llvmorg-7.0.1"]], userRemoteConfigs: [[url: 'http://labmaster3.local/git/llvm-project.git']]])
                 }
                 timeout(90) {
                     sh '''
                     export PATH=$PATH:/usr/bin:/usr/local/bin
-                    export SRC_DIR='clang_601'
-                    export BUILD_DIR='clang_601_build'
+                    export SRC_DIR='clang_701'
+                    export BUILD_DIR='clang_701_build'
 
                     python llvm-zorg/zorg/jenkins/monorepo_build.py cmake build \
                       --assertions \
@@ -194,12 +194,12 @@ pipeline {
                 }
             }
         }
-        stage('Test Clang 6.0.1') {
+        stage('Test Clang 7.0.1') {
             steps {
                 timeout(60) {
                     sh '''
                     export PATH=$PATH:/usr/bin:/usr/local/bin
-                    export LLDB_TEST_COMPILER="$WORKSPACE/clang_601_build/bin/clang"
+                    export LLDB_TEST_COMPILER="$WORKSPACE/clang_701_build/bin/clang"
                     python llvm-zorg/zorg/jenkins/monorepo_build.py lldb-cmake-matrix configure \
                       --assertions \
                       --projects="clang;libcxx;libcxxabi;lldb"  \
@@ -218,16 +218,16 @@ pipeline {
                 junit 'test/results.xml'
             }
         }
-        stage('Build Clang 7.0.1') {
+        stage('Build Clang 9.0.0') {
             steps {
-                dir('clang_701') {
-                    checkout([$class: 'GitSCM', branches: [[name: "llvmorg-7.0.1"]], userRemoteConfigs: [[url: 'http://labmaster3.local/git/llvm-project.git']]])
+                dir('clang_900') {
+                    checkout([$class: 'GitSCM', branches: [[name: "llvmorg-9.0.0"]], userRemoteConfigs: [[url: 'http://labmaster3.local/git/llvm-project.git']]])
                 }
                 timeout(90) {
                     sh '''
                     export PATH=$PATH:/usr/bin:/usr/local/bin
-                    export SRC_DIR='clang_701'
-                    export BUILD_DIR='clang_701_build'
+                    export SRC_DIR='clang_900'
+                    export BUILD_DIR='clang_900_build'
 
                     python llvm-zorg/zorg/jenkins/monorepo_build.py cmake build \
                       --assertions \
@@ -238,12 +238,12 @@ pipeline {
                 }
             }
         }
-        stage('Test Clang 7.0.1') {
+        stage('Test Clang 9.0.0') {
             steps {
                 timeout(60) {
                     sh '''
                     export PATH=$PATH:/usr/bin:/usr/local/bin
-                    export LLDB_TEST_COMPILER="$WORKSPACE/clang_701_build/bin/clang"
+                    export LLDB_TEST_COMPILER="$WORKSPACE/clang_900_build/bin/clang"
                     python llvm-zorg/zorg/jenkins/monorepo_build.py lldb-cmake-matrix configure \
                       --assertions \
                       --projects="clang;libcxx;libcxxabi;lldb"  \




More information about the llvm-commits mailing list