Add env block for build stagw

This commit is contained in:
Max Nuding 2023-11-10 18:41:23 +01:00
parent f2c2d2a18b
commit 4ccaf9976a
No known key found for this signature in database

84
Jenkinsfile vendored
View File

@ -1,48 +1,50 @@
pipeline {
agent any
options {
buildDiscarder(logRotator(numToKeepStr: "100"))
skipDefaultCheckout(true)
agent any
options {
buildDiscarder(logRotator(numToKeepStr: "100"))
skipDefaultCheckout(true)
}
triggers {
pollSCM("*/10 * * * *")
}
/*
environment {
MSBUILD_SQ_SCANNER_HOME = tool name: 'sonarscanner', type: 'hudson.plugins.sonar.MsBuildSQRunnerInstallation'
DOTNET_USE_POLLING_FILE_WATCHER = true
DOTNET_HOSTBUILDER__RELOADCONFIGONCHANGE = false
}
*/
stages {
stage('Checkout'){
steps{
cleanWs()
checkout scm
}
}
triggers {
pollSCM("*/10 * * * *")
stage('Clean'){
steps {
withEnv(["PATH+RUST=$HOME/.cargo/bin"]) {
sh 'cargo clean'
}
}
}
stage('Build'){
steps {
withSonarQubeEnv(installationName: 'grover.local:9000', envOnly: true) {
withEnv(["PATH+RUST=$HOME/.cargo/bin"]) {
sh 'cargo build --release'
}
}
}
}
/*
environment {
MSBUILD_SQ_SCANNER_HOME = tool name: 'sonarscanner', type: 'hudson.plugins.sonar.MsBuildSQRunnerInstallation'
DOTNET_USE_POLLING_FILE_WATCHER = true
DOTNET_HOSTBUILDER__RELOADCONFIGONCHANGE = false
stage('SonarQube Analysis') {
steps {
withSonarQubeEnv('grover.local:9000') {
sh "dotnet ${MSBUILD_SQ_SCANNER_HOME}/SonarScanner.MSBuild.dll end"
}
}
}
*/
stages {
stage('Checkout'){
steps{
cleanWs()
checkout scm
}
}
stage('Clean'){
steps {
withEnv(["PATH+RUST=$HOME/.cargo/bin"]) {
sh 'cargo clean'
}
}
}
stage('Build'){
steps {
withSonarQubeEnv(installationName: 'grover.local:9000', envOnly: true) {
sh 'cargo build --release'
}
}
}
/*
stage('SonarQube Analysis'){
steps {
withSonarQubeEnv('grover.local:9000') {
sh "dotnet ${MSBUILD_SQ_SCANNER_HOME}/SonarScanner.MSBuild.dll end"
}
}
}
*/
}
}
}