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

jenkins, part 1, oh boy

This commit is contained in:
Ellpeck 2020-02-17 17:24:13 +01:00
parent 2e8e17b373
commit 1147469d2f

13
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,13 @@
pipeline {
agent any
stages {
stage('Build Projects') {
steps {
sh 'dotnet build **/MLEM*.csproj'
sh 'dotnet build **/Demos.csproj'
sh 'dotnet build **/Demos.DesktopGL.csproj'
}
}
}
}