Testing with Jenkins
Some checks failed
Gitea Organization/dotfiles/pipeline/head There was a failure building this commit

This commit is contained in:
Mutzi 2023-02-11 12:44:02 +01:00
parent ff18cd16ce
commit 21b30a441f

6
Jenkinsfile vendored
View File

@ -5,8 +5,12 @@ pipeline {
agent {
docker { image 'rust:alpine' }
}
environment {
RUSTFLAGS = '-C target-feature=+crt-static -C link-self-contained=yes -C link-arg=-s'
}
steps {
sh 'cargo build --release'
sh 'apk add pkgconf musl-dev curl'
sh 'cargo build --release --target x86_64-unknown-linux-musl'
sh 'ls -la'
}
}