1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-06 06:53:36 +02:00

fixed submodules not being restored on ci

This commit is contained in:
Ell 2022-06-24 14:11:43 +02:00
parent 5fcdda80dc
commit 059e26781b

5
Jenkinsfile vendored
View file

@ -1,6 +1,11 @@
pipeline {
agent any
stages {
stage('Submodules') {
steps {
sh 'git submodule update --init --recursive --force'
}
}
stage('Cake Build') {
steps {
sh 'dotnet tool restore'