Updated to jenkins and gitea #4

Merged
root merged 18 commits from jenkins into installer 2023-02-12 22:36:02 +00:00
Showing only changes of commit 21b30a441f - Show all commits

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'
}
}