Add dependency installation

master
Félix Desmaretz 2024-10-08 23:20:44 +02:00
parent eb8cf05424
commit 4db4dca7ec
1 changed files with 9 additions and 0 deletions

9
Jenkinsfile vendored
View File

@ -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'