mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
16 lines
210 B
Groovy
16 lines
210 B
Groovy
pipeline {
|
|
agent none
|
|
stages {
|
|
stage('Checkout') {
|
|
steps {
|
|
ws(dir: 'C:/GITTEMP') {
|
|
script {
|
|
checkout scm
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
} |