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