Add Jenkinsfile

This commit is contained in:
Sridhar Ratnakumar 2023-07-23 10:00:06 -04:00
parent da4511673e
commit 5b59b4af99

20
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,20 @@
// 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"
}
}
*/
}
}