#CertifiedRetard
Some checks failed
Gitea Organization/fileserver/pipeline/head There was a failure building this commit

This commit is contained in:
Mutzi 2023-02-13 01:36:31 +01:00
parent 3838a55be6
commit d5101c5651

4
Jenkinsfile vendored
View File

@ -18,6 +18,7 @@ pipeline {
agent { docker { image 'rust:alpine' }} agent { docker { image 'rust:alpine' }}
steps { steps {
dir('backend') { dir('backend') {
sh 'apk add pkgconf musl-dev'
sh 'cargo build --release' sh 'cargo build --release'
dir('target/release') { dir('target/release') {
stash includes: 'backend_rust', name: 'backend-muslc' stash includes: 'backend_rust', name: 'backend-muslc'
@ -27,6 +28,9 @@ pipeline {
} }
stage('Build frontend') { stage('Build frontend') {
agent { docker { image 'node:current-alpine' }} agent { docker { image 'node:current-alpine' }}
options {
ansiColor('xterm')
}
steps { steps {
dir('frontend') { dir('frontend') {
sh 'yarn install --frozen-lockfile' sh 'yarn install --frozen-lockfile'