#CertifiedRetard2
Some checks failed
Gitea Organization/fileserver/pipeline/head This commit looks good
Gitea Organization/fileserver/pipeline/tag There was a failure building this commit

This commit is contained in:
Mutzi 2023-02-13 01:41:57 +01:00
parent d5101c5651
commit c6f2d3f1f3

4
Jenkinsfile vendored
View File

@ -55,9 +55,9 @@ pipeline {
unstash name: 'frontend' unstash name: 'frontend'
} }
unstash name: 'backend-glibc' unstash name: 'backend-glibc'
sh 'tar -cvJf --transform="flags=r;s|backend_rust|server|" linux-x64-glibc.tar.xz backend_rust static' sh 'tar -cvJf linux-x64-glibc.tar.xz --transform="flags=r;s|backend_rust|server|" backend_rust static'
unstash name: 'backend-muslc' unstash name: 'backend-muslc'
sh 'tar -cvJf --transform="flags=r;s|backend_rust|server|" linux-x64-muslc.tar.xz backend_rust static' sh 'tar -cvJf linux-x64-muslc.tar.xz --transform="flags=r;s|backend_rust|server|" backend_rust static'
archiveArtifacts artifacts: '*.tar.xz', allowEmptyArchive: false, onlyIfSuccessful: true archiveArtifacts artifacts: '*.tar.xz', allowEmptyArchive: false, onlyIfSuccessful: true
} }
} }