ci: refs#6706 Jenkinsfile & deps fixes
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Juan Ferrer 2024-02-05 11:38:16 +01:00
parent 0ae1d6c546
commit cfcfa489b4
3 changed files with 12 additions and 0 deletions

8
Jenkinsfile vendored
View File

@ -92,6 +92,10 @@ pipeline {
expression { RUN_BUILD }
}
steps {
script {
def packageJson = readJSON file: 'package.json'
env.VERSION = packageJson.version
}
sh 'docker-compose build back'
}
}
@ -126,6 +130,10 @@ pipeline {
expression { RUN_BUILD }
}
steps {
script {
def packageJson = readJSON file: 'package.json'
env.VERSION = packageJson.version
}
sh 'gulp build'
sh 'docker-compose build front'
}

View File

@ -86,6 +86,7 @@
"jasmine-spec-reporter": "^7.0.0",
"jest": "^26.0.1",
"jest-junit": "^8.0.0",
"js-yaml": "^4.1.0",
"json-loader": "^0.5.7",
"merge-stream": "^1.0.1",
"minimist": "^1.2.5",

View File

@ -220,6 +220,9 @@ devDependencies:
jest-junit:
specifier: ^8.0.0
version: 8.0.0
js-yaml:
specifier: ^4.1.0
version: 4.1.0
json-loader:
specifier: ^0.5.7
version: 0.5.7