Add dependency installation
parent
eb8cf05424
commit
4db4dca7ec
|
|
@ -1,6 +1,15 @@
|
|||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage('Install Dependencies') {
|
||||
when {
|
||||
branch 'master'
|
||||
}
|
||||
steps {
|
||||
echo 'Installing Dependencies'
|
||||
sh '''cargo install --git https://github.com/typst/typst --locked typst-cli'''
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
when {
|
||||
branch 'master'
|
||||
|
|
|
|||
Loading…
Reference in New Issue