matrix-media-expanded/Jenkinsfile
2023-04-26 21:45:08 -04:00

10 lines
147 B
Groovy

pipeline {
agent any
stages {
stage ('Build') {
steps {
nixBuildAll ()
}
}
}
}