added tools
Some checks failed
gitea_dndsources/schedulord-frontend/pipeline/head There was a failure building this commit
Some checks failed
gitea_dndsources/schedulord-frontend/pipeline/head There was a failure building this commit
This commit is contained in:
parent
02dbee085f
commit
3194710388
65
Jenkinsfile
vendored
65
Jenkinsfile
vendored
@ -1,66 +1,31 @@
|
||||
pipeline {
|
||||
agent none
|
||||
agent any
|
||||
tools {
|
||||
nodejs "node"
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Install') {
|
||||
agent {
|
||||
docker {
|
||||
image 'node:lts-bullseye-slim'
|
||||
args '-p 3000:3000'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
stage('NPM Install') {
|
||||
withEnv(["NPM_CONFIG_LOGLEVEL=warn"]) {
|
||||
sh 'npm install'
|
||||
stash includes: 'node_modules/', name: 'node_modules'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Static code analysis') {
|
||||
agent {
|
||||
docker {
|
||||
image 'node:lts-bullseye-slim'
|
||||
args '-p 3000:3000'
|
||||
stage('Test') {
|
||||
withEnv(["CHROME_BIN=/usr/bin/chromium-browser"]) {
|
||||
sh 'ng test --progress=false --watch false'
|
||||
}
|
||||
junit '**/test-results.xml'
|
||||
}
|
||||
steps {
|
||||
unstash 'node_modules'
|
||||
sh 'npm run-script lint'
|
||||
stash includes: 'node_modules/', name: 'node_modules'
|
||||
}
|
||||
}
|
||||
stage('Unit tests') {
|
||||
agent {
|
||||
docker {
|
||||
image 'node:lts-bullseye-slim'
|
||||
args '-p 3000:3000'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
unstash 'node_modules'
|
||||
sh 'npm run-script test'
|
||||
stash includes: 'node_modules/', name: 'node_modules'
|
||||
}
|
||||
|
||||
stage('Lint') {
|
||||
sh 'ng lint'
|
||||
}
|
||||
|
||||
stage('Build') {
|
||||
steps {
|
||||
unstash 'node_modules'
|
||||
sh 'npm run-script build'
|
||||
stash includes: 'dist/', name: 'dist'
|
||||
}
|
||||
milestone()
|
||||
sh 'ng build --prod --aot --sm --progress=false'
|
||||
}
|
||||
|
||||
stage('Build Docker Image') {
|
||||
// environment {
|
||||
// DOCKER_PUSH = credentials('docker_push')
|
||||
// }
|
||||
steps {
|
||||
unstash 'dist'
|
||||
// sh 'docker build -t $DOCKER_PUSH_URL/frontend .'
|
||||
sh 'docker build .'
|
||||
// sh 'docker login -u $DOCKER_PUSH_USR -p $DOCKER_PUSH_PSW $DOCKER_PUSH_URL'
|
||||
// sh 'docker push $DOCKER_PUSH_URL/frontend'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user