Add Jenkinsfile
This commit is contained in:
parent
da4511673e
commit
5b59b4af99
1 changed files with 20 additions and 0 deletions
20
Jenkinsfile
vendored
Normal file
20
Jenkinsfile
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
*/
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue