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