diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..c8a7696 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,15 @@ +pipeline { + agent any + stages { + stage('Build Projects') { + steps { + sh '''for i in **/MLEM*.csproj; do + dotnet build $i +done''' + sh 'dotnet build **/Demos.csproj' + sh 'dotnet build **/Demos.DesktopGL.csproj' + } + } + + } +} \ No newline at end of file