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 77b6e2aba3 - Show all commits

13
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,13 @@
pipeline {
agent none
stage('Build') {
agent {
docker { image 'rust:alpine' }
}
steps {
sh 'export'
sh 'cargo --release build'
sh 'ls -la'
}
}
}