1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-01 21:03:38 +02:00
MLEM/Jenkinsfile

51 lines
1.2 KiB
Plaintext
Raw Normal View History

2020-02-17 17:24:13 +01:00
pipeline {
agent any
stages {
stage('Build Projects') {
steps {
sh '''for i in **/MLEM*.csproj; do
dotnet build $i
done'''
2020-02-17 17:24:13 +01:00
sh 'dotnet build **/Demos.csproj'
}
}
stage('Pack and Publish (Master)') {
when {
branch 'master'
}
2020-02-21 13:41:33 +01:00
steps {
sh 'find . -type f -name \'*.nupkg\' -delete'
2020-02-21 13:41:33 +01:00
sh '''for i in **/MLEM*.csproj; do
dotnet pack $i --version-suffix ${BUILD_NUMBER}
done'''
sh '''for i in **/*.nupkg; do
dotnet nuget push -s http://localhost:5000/v3/index.json $i -k $BAGET -n true
2020-02-21 13:41:33 +01:00
done'''
2020-05-21 02:19:16 +02:00
}
2020-02-21 13:41:33 +01:00
}
stage('Pack and Publish (Release)') {
2020-03-05 00:41:29 +01:00
when {
branch 'release'
2020-03-05 00:41:29 +01:00
}
2020-02-21 13:41:33 +01:00
steps {
sh 'find . -type f -name \'*.nupkg\' -delete'
sh '''for i in **/MLEM*.csproj; do
dotnet pack $i
done'''
2020-02-21 13:41:33 +01:00
sh '''for i in **/*.nupkg; do
dotnet nuget push -s https://api.nuget.org/v3/index.json $i -k $NUGET -n true
2020-02-21 13:41:33 +01:00
done'''
2020-05-21 01:59:13 +02:00
sh '''/opt/docfx/docfx.exe "Docs/docfx.json"
cp Docs/_site/** /var/www/MLEM/ -r'''
}
2020-02-21 13:41:33 +01:00
}
2020-02-17 17:24:13 +01:00
}
2020-02-26 10:26:22 +01:00
environment {
BAGET = credentials('3db850d0-e6b5-43d5-b607-d180f4eab676')
NUGET = credentials('e1bf7f6c-6047-4f7e-b639-15240a8f8351')
2020-02-26 10:26:22 +01:00
}
2020-03-05 00:41:29 +01:00
}