2020-01-15 17:49:23 +01: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.
|
|
|
|
|
|
|
|
def success = true
|
|
|
|
|
|
|
|
pipeline {
|
2020-01-15 17:50:50 +01:00
|
|
|
agent { label 'windows' }
|
2020-01-15 17:49:23 +01:00
|
|
|
parameters {
|
|
|
|
string(name: 'DIFF_ID')
|
|
|
|
string(name: 'PHID')
|
|
|
|
}
|
|
|
|
environment {
|
2020-01-16 09:13:10 +01:00
|
|
|
CONDUIT_TOKEN = credentials('phabricator-conduit-token')
|
|
|
|
PHABRICATOR_HOST = 'https://reviews.llvm.org'
|
|
|
|
PHAB_LOG = "${WORKSPACE}/build/.phabricator-comment"
|
|
|
|
MY_BUILD_ID = "${JOB_BASE_NAME}-${BUILD_NUMBER}"
|
2020-02-11 13:49:42 +01:00
|
|
|
RESULT_URL = "https://pantheon.corp.google.com/storage/browser/llvm-premerge-checks/results/${MY_BUILD_ID}"
|
2020-01-16 09:13:10 +01:00
|
|
|
SCRIPT_DIR = "${WORKSPACE}/llvm-premerge-checks/scripts"
|
2020-01-28 13:08:51 +01:00
|
|
|
// store all build results here, will be uploaded to GCS later
|
2020-01-16 09:13:10 +01:00
|
|
|
RESULT_DIR = "${WORKSPACE}\\results"
|
|
|
|
LLVM_DIR = "${WORKSPACE}\\llvm-project"
|
2020-01-15 17:49:23 +01:00
|
|
|
}
|
|
|
|
stages {
|
|
|
|
stage("build info"){
|
|
|
|
steps {
|
|
|
|
echo "Building diff ${DIFF_ID} with PHID ${PHID}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage("git checkout"){
|
|
|
|
steps {
|
|
|
|
echo "getting llvm-premerge-checks... "
|
|
|
|
dir("llvm-premerge-checks")
|
|
|
|
{
|
|
|
|
git url: 'https://github.com/google/llvm-premerge-checks.git'
|
|
|
|
}
|
|
|
|
echo "getting llvm-project... "
|
|
|
|
dir("llvm-project")
|
|
|
|
{
|
2020-01-23 18:12:31 +01:00
|
|
|
bat ""
|
|
|
|
bat 'if exist "build" rd /s/q "build"'
|
2020-01-15 17:49:23 +01:00
|
|
|
git url: 'https://github.com/llvm/llvm-project.git'
|
|
|
|
}
|
2020-01-28 13:08:51 +01:00
|
|
|
// create ${RESULT_DIR}
|
|
|
|
powershell """
|
|
|
|
Remove-Item ${RESULT_DIR} -Recurse -ErrorAction Ignore
|
|
|
|
New-Item -ItemType Directory -Force -Path ${RESULT_DIR} | Out-Null
|
|
|
|
"""
|
2020-01-15 17:49:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('arc patch'){
|
|
|
|
steps {
|
2020-01-16 09:14:44 +01:00
|
|
|
dir("${LLVM_DIR}"){
|
2020-01-16 15:17:46 +01:00
|
|
|
bat """
|
2020-01-16 15:04:06 +01:00
|
|
|
python ${SCRIPT_DIR}/phabtalk/apply_patch2.py --comment-file ${PHAB_LOG} --token ${CONDUIT_TOKEN} --url ${PHABRICATOR_HOST} ${DIFF_ID}
|
2020-01-16 11:31:12 +01:00
|
|
|
"""
|
2020-01-16 09:14:44 +01:00
|
|
|
}
|
2020-01-15 17:49:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('CMake') {
|
|
|
|
steps {
|
|
|
|
dir("${LLVM_DIR}"){
|
2020-02-03 11:22:49 +01:00
|
|
|
powershell "${SCRIPT_DIR}/run_cmake.ps1 -projects detect"
|
2020-01-15 17:49:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('ninja all') {
|
|
|
|
steps {
|
|
|
|
dir("${LLVM_DIR}"){
|
|
|
|
powershell "${SCRIPT_DIR}/run_ninja.ps1 all"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('ninja check-all') {
|
|
|
|
steps {
|
|
|
|
dir("${LLVM_DIR}"){
|
|
|
|
powershell "${SCRIPT_DIR}/run_ninja.ps1 check-all"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
post {
|
|
|
|
always {
|
2020-02-11 13:49:42 +01:00
|
|
|
echo "Uploading logs to ${RESULT_URL} ..."
|
2020-02-17 16:29:35 +01:00
|
|
|
dir("${RESULT_DIR}") {
|
2020-02-13 15:32:05 +01:00
|
|
|
// gather all result files in a folder
|
2020-01-15 17:49:23 +01:00
|
|
|
powershell """
|
2020-02-17 16:29:35 +01:00
|
|
|
\$ErrorActionPreference = 'Continue'
|
2020-01-27 15:14:12 +01:00
|
|
|
Write-Host "Getting the console log..."
|
2020-01-15 17:49:23 +01:00
|
|
|
Invoke-WebRequest -OutFile console-log.txt -uri "http://jenkins.local:8080/job/${JOB_BASE_NAME}/${BUILD_NUMBER}/consoleText" -ErrorAction "Continue"
|
|
|
|
|
2020-01-27 15:14:12 +01:00
|
|
|
Write-Host "Copying build artefacts..."
|
2020-02-17 16:29:35 +01:00
|
|
|
Copy-Item "${LLVM_DIR}\\choose_projects.log"
|
|
|
|
Copy-Item "${LLVM_DIR}\\build\\CMakeCache.txt"
|
|
|
|
Copy-Item "${LLVM_DIR}\\build\\test-results.xml"
|
2020-02-13 15:32:05 +01:00
|
|
|
"""
|
2020-01-15 17:49:23 +01:00
|
|
|
}
|
2020-02-11 13:49:42 +01:00
|
|
|
/// send results to Phabricator
|
2020-02-17 16:29:35 +01:00
|
|
|
echo "Sending build feedback to Phabricator..."
|
|
|
|
bat """
|
2020-02-17 16:59:13 +01:00
|
|
|
python ${SCRIPT_DIR}/phabtalk/phabtalk.py "${PHID}" "${DIFF_ID}" ^
|
|
|
|
--workspace "${LLVM_DIR}" ^
|
|
|
|
--conduit-token "${CONDUIT_TOKEN}" ^
|
|
|
|
--test-result-file "test-results.xml" ^
|
|
|
|
--host "${PHABRICATOR_HOST}/api/" ^
|
|
|
|
--results-dir "${RESULT_DIR}" ^
|
|
|
|
--results-url "${RESULT_URL}" ^
|
|
|
|
--failures "${failure_message}"
|
2020-02-11 13:49:42 +01:00
|
|
|
"""
|
2020-02-17 16:29:35 +01:00
|
|
|
dir("${RESULT_DIR}") {
|
2020-02-13 15:32:05 +01:00
|
|
|
// upload results to
|
|
|
|
// Google Cloud Storage
|
|
|
|
powershell """
|
|
|
|
Write-Host "Uploading results to GCS..."
|
|
|
|
\$ErrorActionPreference = 'Continue'
|
|
|
|
gsutil cp *.* gs://llvm-premerge-checks/results/${MY_BUILD_ID}/
|
|
|
|
Write-Host "Done."
|
|
|
|
"""
|
|
|
|
}
|
2020-02-17 16:29:35 +01:00
|
|
|
echo "Done."
|
2020-02-13 15:32:05 +01:00
|
|
|
}
|
|
|
|
}
|
2020-01-15 17:49:23 +01:00
|
|
|
}
|