2019-10-17 18:42:03 +02:00
|
|
|
// Copyright 2019 Google LLC
|
|
|
|
//
|
|
|
|
// Licensed under the the Apache License v2.0 with LLVM Exceptions (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// https://llvm.org/LICENSE.txt
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
pipeline {
|
2020-04-16 12:55:34 +02:00
|
|
|
agent {
|
|
|
|
node {
|
|
|
|
label 'windows'
|
|
|
|
// use custom workspace folder to shorten paths
|
2020-04-16 12:58:35 +02:00
|
|
|
customWorkspace "C:\\ws\\master"
|
2020-04-16 12:55:34 +02:00
|
|
|
}
|
|
|
|
}
|
2019-12-13 16:19:30 +01:00
|
|
|
|
2019-12-17 09:17:33 +01:00
|
|
|
triggers {
|
2020-02-03 15:37:11 +01:00
|
|
|
pollSCM 'H H/4 * * *'
|
2019-12-17 09:17:33 +01:00
|
|
|
}
|
|
|
|
|
2020-04-24 11:37:02 +02:00
|
|
|
options {
|
|
|
|
// enable timestaps for getting execution times
|
|
|
|
timestamps ()
|
|
|
|
// set build timeout
|
|
|
|
timeout(time:2, unit:'HOURS')
|
|
|
|
}
|
2019-12-17 09:17:33 +01:00
|
|
|
|
2019-10-23 16:23:49 +02:00
|
|
|
environment {
|
2019-12-18 10:22:12 +01:00
|
|
|
MY_BUILD_ID = "${JOB_BASE_NAME}-${BUILD_NUMBER}"
|
2019-10-24 13:46:30 +02:00
|
|
|
SCRIPT_DIR = "${WORKSPACE}/llvm-premerge-checks/scripts"
|
2019-12-18 12:36:13 +01:00
|
|
|
RESULT_DIR = "${WORKSPACE}\\results"
|
2019-12-18 10:22:12 +01:00
|
|
|
LLVM_DIR = "${WORKSPACE}\\llvm-project"
|
2020-04-27 15:53:18 +02:00
|
|
|
// enable sccache for this build. Comment out the line to disable it
|
2020-04-27 09:20:42 +02:00
|
|
|
SCCACHE_DIR = "C:\\ws\\sccache"
|
2020-05-27 11:19:02 +02:00
|
|
|
RESULT_URL = "https://storage.googleapis.com/llvm-premerge-checks/results/${MY_BUILD_ID}"
|
2019-10-23 16:23:49 +02:00
|
|
|
}
|
2020-04-24 11:37:02 +02:00
|
|
|
|
2019-10-17 18:42:03 +02:00
|
|
|
stages {
|
|
|
|
stage("git checkout"){
|
|
|
|
steps {
|
2019-12-16 10:24:25 +01:00
|
|
|
echo "getting llvm-premerge-checks... "
|
2019-10-17 18:42:03 +02:00
|
|
|
dir("llvm-premerge-checks")
|
|
|
|
{
|
|
|
|
git url: 'https://github.com/google/llvm-premerge-checks.git'
|
|
|
|
}
|
2019-12-16 10:24:25 +01:00
|
|
|
echo "getting llvm-project... "
|
2019-12-18 16:06:07 +01:00
|
|
|
dir("llvm-project")
|
2019-12-18 10:22:12 +01:00
|
|
|
{
|
|
|
|
git url: 'https://github.com/llvm/llvm-project.git'
|
|
|
|
}
|
2019-12-16 10:39:24 +01:00
|
|
|
powershell "New-Item -ItemType Directory -Force -Path ${RESULT_DIR}"
|
2019-10-17 18:42:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('CMake') {
|
|
|
|
steps {
|
2019-12-18 10:22:12 +01:00
|
|
|
dir("${LLVM_DIR}"){
|
2020-04-24 13:47:00 +02:00
|
|
|
powershell "python ${SCRIPT_DIR}/run_cmake.py"
|
2019-12-13 17:15:20 +01:00
|
|
|
}
|
2019-10-17 18:42:03 +02:00
|
|
|
}
|
|
|
|
}
|
2019-10-23 15:39:24 +02:00
|
|
|
stage('ninja all') {
|
|
|
|
steps {
|
2019-12-18 12:36:13 +01:00
|
|
|
dir("${LLVM_DIR}"){
|
2020-04-24 13:47:00 +02:00
|
|
|
powershell "python ${SCRIPT_DIR}/run_ninja.py all"
|
2019-12-13 17:15:20 +01:00
|
|
|
}
|
2019-10-23 15:39:24 +02:00
|
|
|
}
|
|
|
|
}
|
2019-10-17 18:42:03 +02:00
|
|
|
stage('ninja check-all') {
|
|
|
|
steps {
|
2019-12-18 10:22:12 +01:00
|
|
|
dir("${LLVM_DIR}"){
|
2020-04-24 14:35:23 +02:00
|
|
|
powershell "python ${SCRIPT_DIR}/run_ninja.py check-all"
|
2019-12-13 17:15:20 +01:00
|
|
|
}
|
2019-10-17 18:42:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-23 16:23:49 +02:00
|
|
|
post {
|
|
|
|
always {
|
2020-05-27 11:19:02 +02:00
|
|
|
echo "Logs uploaded to ${RESUlT_URL}"
|
2019-12-18 12:36:13 +01:00
|
|
|
dir("${env.RESULT_DIR}") {
|
|
|
|
// gather all result files in a folder, then upload everything to
|
|
|
|
// Google Cloud Storage
|
|
|
|
powershell """
|
|
|
|
# get the console log
|
2019-12-18 17:47:26 +01:00
|
|
|
Invoke-WebRequest -OutFile console-log.txt -uri "http://jenkins.local:8080/job/${JOB_BASE_NAME}/${BUILD_NUMBER}/consoleText" -ErrorAction "Continue"
|
2019-12-18 12:36:13 +01:00
|
|
|
|
2019-12-18 15:44:54 +01:00
|
|
|
Copy-Item "${LLVM_DIR}\\build\\CMakeCache.txt"
|
|
|
|
Copy-Item "${LLVM_DIR}\\build\\test-results.xml"
|
2019-12-18 12:36:13 +01:00
|
|
|
|
|
|
|
# upload files
|
2019-12-20 14:36:53 +01:00
|
|
|
\$ErrorActionPreference = 'SilentlyContinue'
|
|
|
|
gsutil cp -Z *.* gs://llvm-premerge-checks/results/${MY_BUILD_ID}/
|
2019-12-18 10:22:12 +01:00
|
|
|
"""
|
2019-10-23 17:48:16 +02:00
|
|
|
}
|
2019-12-20 08:53:05 +01:00
|
|
|
// doesn't find junit results, not sure why...
|
|
|
|
// junit "${LLVM_DIR}\\build\\test-results.xml"
|
2019-10-23 16:23:49 +02:00
|
|
|
}
|
2019-12-17 18:49:10 +01:00
|
|
|
}
|
2019-11-29 13:23:58 +01:00
|
|
|
|
2019-10-17 18:42:03 +02:00
|
|
|
}
|