add Jenkins CI

This commit is contained in:
Sridhar Ratnakumar 2023-07-13 16:47:27 -04:00
parent 7f30436ece
commit 67e9539353

11
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage ('Build') {
steps {
// https://github.com/srid/nixci
nixCI ()
}
}
}
}