1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-11-22 20:58:34 +01: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 { pipeline {
agent any agent any
stages { stages {
stage('Submodules') {
steps {
sh 'git submodule update --init --recursive --force'
}
}
stage('Cake Build') { stage('Cake Build') {
steps { steps {
sh 'dotnet tool restore' sh 'dotnet tool restore'