Punktonerzy/Jenkinsfile

56 lines
1.1 KiB
Plaintext
Raw Normal View History

2019-11-24 11:43:36 +01:00
pipeline {
agent any
tools {
maven 'Default'
jdk 'java-11-openjdk-amd64'
nodejs 'localNode'
}
stages {
stage('Initialize') {
steps {
sh '''
echo "PATH = ${PATH}"
echo "M2_HOME = ${M2_HOME}"
'''
}
}
stage('Build') {
steps {
echo 'Building..'
sh '''
cd BackEnd
mvn clean install -Dmaven.test.skip=true
sh '''
}
}
stage('Install dependencies') {
steps {
echo 'Install dependencies...'
sh '''
cd FrontEnd
npm install -g @angular/cli@1.7.4;
npm install
'''
}
}
stage('Build FrontEnd') {
steps {
echo 'Building...'
sh '''
ng build --prod
'''
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}