mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
13 lines
172 B
Groovy
13 lines
172 B
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('') {
|
|
steps {
|
|
node(label: 'Stage Checkouts') {
|
|
sh 'checkout scm'
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
} |