mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-29 05:35:15 +01:00
Make sh silent
This commit is contained in:
parent
9ec47f5393
commit
a3d0974b46
30
Jenkinsfile
vendored
30
Jenkinsfile
vendored
@ -1,3 +1,7 @@
|
|||||||
|
def silentsh(cmd) {
|
||||||
|
sh('#!/bin/sh -e\n' + cmd)
|
||||||
|
}
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
tools {
|
tools {
|
||||||
@ -9,7 +13,7 @@ pipeline {
|
|||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
env.CI_SKIP = "false"
|
env.CI_SKIP = "false"
|
||||||
result = sh (script: "git log -1 | grep '(?s).[CI[-\\s]SKIP].*'", returnStatus: true)
|
result = silentsh(script: "git log -1 | grep '(?s).[CI[-\\s]SKIP].*'", returnStatus: true)
|
||||||
if (result == 0) {
|
if (result == 0) {
|
||||||
env.CI_SKIP = "true"
|
env.CI_SKIP = "true"
|
||||||
error "'[CI-SKIP]' found in git commit message. Aborting."
|
error "'[CI-SKIP]' found in git commit message. Aborting."
|
||||||
@ -20,37 +24,37 @@ pipeline {
|
|||||||
stage ('clean') {
|
stage ('clean') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Cleaning the maven workspace...'
|
echo 'Cleaning the maven workspace...'
|
||||||
sh 'mvn clean'
|
silentsh 'mvn clean'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage ('dependencies') {
|
stage ('dependencies') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Downloading dependencies...'
|
echo 'Downloading dependencies...'
|
||||||
sh 'mvn dependency:go-offline'
|
silentsh 'mvn dependency:go-offline'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage ('validate') {
|
stage ('validate') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Validating the maven project...'
|
echo 'Validating the maven project...'
|
||||||
sh 'mvn -o validate'
|
silentsh 'mvn -o validate'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage ('compile') {
|
stage ('compile') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Compiling source classes...'
|
echo 'Compiling source classes...'
|
||||||
sh 'mvn -o compile'
|
silentsh 'mvn -o compile'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage ('compile-test') {
|
stage ('compile-test') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Compiling test classes...'
|
echo 'Compiling test classes...'
|
||||||
sh 'mvn -o test-compile'
|
silentsh 'mvn -o test-compile'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage ('test') {
|
stage ('test') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Performing unit testing...'
|
echo 'Performing unit testing...'
|
||||||
sh 'mvn -o test'
|
silentsh 'mvn -o test'
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
success {
|
success {
|
||||||
@ -62,7 +66,7 @@ pipeline {
|
|||||||
stage ('package') {
|
stage ('package') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Preparing the final package...'
|
echo 'Preparing the final package...'
|
||||||
sh 'mvn -o package'
|
silentsh 'mvn -o package'
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
success {
|
success {
|
||||||
@ -77,7 +81,7 @@ pipeline {
|
|||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
echo 'Generating sources...'
|
echo 'Generating sources...'
|
||||||
sh 'mvn -o source:jar'
|
silentsh 'mvn -o source:jar'
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
success {
|
success {
|
||||||
@ -92,7 +96,7 @@ pipeline {
|
|||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
echo 'Generaing javadocs...'
|
echo 'Generaing javadocs...'
|
||||||
sh 'mvn -o javadoc:javadoc javadoc:jar'
|
silentsh 'mvn -o javadoc:javadoc javadoc:jar'
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
success {
|
success {
|
||||||
@ -109,13 +113,13 @@ pipeline {
|
|||||||
stage ('verify') {
|
stage ('verify') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Performing integration testing...'
|
echo 'Performing integration testing...'
|
||||||
sh 'mvn -o verify'
|
silentsh 'mvn -o verify'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage ('install') {
|
stage ('install') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Installing artifacts to the local repository...'
|
echo 'Installing artifacts to the local repository...'
|
||||||
sh 'mvn -o install'
|
silentsh 'mvn -o install'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage ('deploy') {
|
stage ('deploy') {
|
||||||
@ -124,7 +128,7 @@ pipeline {
|
|||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
echo 'Deploying to repository...'
|
echo 'Deploying to repository...'
|
||||||
sh 'mvn -o deploy'
|
silentsh 'mvn -o deploy'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user