nixos-config/Jenkinsfile
Sridhar Ratnakumar 67e9539353 add Jenkins CI
2023-07-13 16:47:27 -04:00

11 lines
190 B
Groovy

pipeline {
agent any
stages {
stage ('Build') {
steps {
// https://github.com/srid/nixci
nixCI ()
}
}
}
}