diff --git a/Jenkinsfile b/Jenkinsfile index 64104e3..87cbd5a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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'