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