mirror of
https://github.com/TangentFoxy/itchy.git
synced 2024-11-14 10:14:22 +00:00
11 lines
110 B
Groovy
11 lines
110 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('build') {
|
|
steps {
|
|
sh 'moonc .'
|
|
}
|
|
}
|
|
}
|
|
}
|