12 lines
108 B
Groovy
12 lines
108 B
Groovy
pipeline {
|
|
|
|
node ('tau2013z') {
|
|
|
|
stage ('build-pdf') {
|
|
sh """
|
|
bash build.sh
|
|
"""
|
|
}
|
|
}
|
|
}
|