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