rust-nix-template/Jenkinsfile
Sridhar Ratnakumar 5b59b4af99 Add Jenkinsfile
2023-07-23 10:00:06 -04:00

20 lines
403 B
Groovy

// 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"
}
}
*/
}
}