feat: refs #6695 better stages for e2e
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
ddf8238914
commit
9f3a7aa452
|
@ -73,12 +73,6 @@ pipeline {
|
||||||
environment {
|
environment {
|
||||||
CREDENTIALS = credentials('docker-registry')
|
CREDENTIALS = credentials('docker-registry')
|
||||||
}
|
}
|
||||||
steps {
|
|
||||||
script {
|
|
||||||
def packageJson = readJSON file: 'package.json'
|
|
||||||
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stages {
|
stages {
|
||||||
// stage('Network') {
|
// stage('Network') {
|
||||||
// steps {
|
// steps {
|
||||||
|
@ -86,6 +80,14 @@ pipeline {
|
||||||
// // sh 'docker network create e2e_default || true'
|
// // sh 'docker network create e2e_default || true'
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
|
stage('Setup') {
|
||||||
|
steps {
|
||||||
|
script {
|
||||||
|
def packageJson = readJSON file: 'package.json'
|
||||||
|
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
stage('DB') {
|
stage('DB') {
|
||||||
steps {
|
steps {
|
||||||
sh 'rm -rf salix'
|
sh 'rm -rf salix'
|
||||||
|
|
Loading…
Reference in New Issue