First try with Jenkinsfile, hope for the best
This commit is contained in:
18
Jenkinsfile
vendored
Normal file
18
Jenkinsfile
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
pipeline {
|
||||
agent 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...'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user