rust-nix-template/Jenkinsfile

21 lines
403 B
Text
Raw Normal View History

2023-07-23 16:00:06 +02:00
// We use https://github.com/juspay/jenkins-nix-ci
pipeline {
agent any
stages {
stage ('Build') {
steps {
// https://github.com/srid/nixci
nixCI ()
}
}
/* stage ('Cachix push') {
when { branch 'master' }
steps {
cachixPush "srid"
}
}
*/
}
}