17 lines
391 B
Groovy
17 lines
391 B
Groovy
pipeline {
|
|
agent {label 'linux'}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
echo 'Starting build step...'
|
|
sh './scripts/build.sh'
|
|
}
|
|
}
|
|
|
|
// Testing latex isn't really a thing, but we could do basic sanity checks in the future?
|
|
|
|
stage('Deploy') {
|
|
echo 'Starting deploy step...'
|
|
}
|
|
}
|
|
} |