POS_Sprint_1 #1

Merged
s426229 merged 16 commits from POS_Sprint_1 into master 2020-12-03 19:53:04 +01:00
Showing only changes of commit b3239e06a2 - Show all commits

9
Jenkinsfile vendored
View File

@ -12,9 +12,6 @@ pipeline {
steps {
dir('Serwer') {
sh "~/.dotnet/dotnet restore"
}
dir('Klient') {
sh "~/.dotnet/dotnet restore"
}
}
}
@ -22,9 +19,6 @@ pipeline {
steps {
dir('Serwer') {
sh "~/.dotnet/dotnet clean"
}
dir('Klient') {
sh "~/.dotnet/dotnet clean"
}
}
}
@ -32,9 +26,6 @@ pipeline {
steps {
dir('Serwer') {
sh "~/.dotnet/dotnet build"
}
dir('Klient') {
sh "~/.dotnet/dotnet build"
}
}
}