nanodata/Jenkinsfile

148 lines
4.7 KiB
Groovy

pipeline
/*
Nanodata
Requirements:
Following variables are set in Jenkins:
* TOMCAT10_HOME
* TOMCAT10_TEST_HOME
Maven is Installed
Java 21 is installed - variable JAVA_21_HOME is set
Following Systemd services are installed:
tomcat10
tomcat10test
*/
{
agent any
environment {
AAA = 'aaa'
}
stages
{
stage('Build')
{
steps {
echo "*** Building ${env.JOB_NAME} ***"
sh '''
#!/bin/bash
echo JOB_NAME=$JOB_NAME
if [ -z "$JAVA_21_HOME" ]
then
echo "KO : Variable JAVA_21_HOME is empty. You fix this issue by adding this variable to configuration of Jenkins."
exit 1
else
echo "OK : Variable JAVA_21_HOME is NOT empty"
fi
export JAVA_HOME=$JAVA_21_HOME
mvn clean install -X
echo "Build of $JOB_NAME was successful"
'''
}
}
stage('Deploy')
{
steps {
echo "*** Deploying ${env.JOB_NAME} ***"
sh '''
#!/bin/bash
#echo "Nothing to do"
#exit
if [ -z "$TOMCAT10_HOME" ]
then
echo "KO : Variable TOMCAT10_HOME is empty. You fix this issue by adding this variable to configuration of Jenkins."
exit 1
else
echo "OK : Variable TOMCAT10_HOME is NOT empty"
fi
if [ -z "$TOMCAT10_TEST_HOME" ]
then
echo "KO : Variable TOMCAT10_TEST_HOME is empty. You fix this issue by adding this variable to configuration of Jenkins."
exit 1
else
echo "OK : Variable TOMCAT10_TEST_HOME is NOT empty"
fi
case $BRANCH_NAME in
master | deploy_prod)
echo Branch $BRANCH_NAME is supported. Continuing.
TOMCAT_HOME=$TOMCAT10_HOME
systemdService=tomcat10
;;
develop | jenkins | deploy_test | feature/octagon)
echo Branch $BRANCH_NAME is supported. Continuing.
TOMCAT_HOME=$TOMCAT10_TEST_HOME
systemdService=tomcat10test
;;
*)
echo Branch $BRANCH_NAME is not supported. A failure happened. Exiting.
exit 1
;;
esac
mv nanodata-web/target/nanodata-web-*.war nanodata.war
currentDir=`pwd`&&cd $TOMCAT_HOME/bin
#./catalina.sh stop
sudo systemctl stop $systemdService
sleep 5
if [ -f "$TOMCAT_HOME/webapps/nanodata.war" ]; then
rm $TOMCAT_HOME/webapps/nanodata.war
fi
if [ -f "$TOMCAT_HOME/webapps/nanodata" ]; then
rm -r $TOMCAT_HOME/webapps/nanodata
fi
mv $currentDir/nanodata.war $TOMCAT_HOME/webapps
#(
# set -e
# export BUILD_ID=dontKillMe
# export JENKINS_NODE_COOKIE=dontKillMe
# ./catalina.sh start &
#) &
sudo systemctl start $systemdService
cd $currentDir
'''
}
}
}
post {
always {
script {
env.color = "${currentBuild.currentResult == 'SUCCESS' ? 'green' : 'red'}"
}
echo 'Sending e-mail.'
sh "printenv | sort"
emailext body: "<b style=\"color:$COLOR\">${currentBuild.currentResult}</b> - ${env.JOB_NAME} (#${env.BUILD_NUMBER})<br> <ul style=\"margin-top:2px;padding-top:2px;padding-left:30px;\"><li>More info at: <a href=\"${env.BUILD_URL}\">${env.BUILD_URL}</a></li></ul>",
recipientProviders: [[$class: 'DevelopersRecipientProvider'], [$class: 'RequesterRecipientProvider']],
subject: "Jenkins Build - ${currentBuild.currentResult} - $JOB_NAME (#$BUILD_NUMBER)"
}
}
}