19 lines
266 B
Plaintext
19 lines
266 B
Plaintext
|
pipeline {
|
||
|
stages {
|
||
|
stage('Restore') {
|
||
|
dir('Serwer') {
|
||
|
bat "dotnet restore"
|
||
|
}
|
||
|
}
|
||
|
stage('Clean') {
|
||
|
dir('Serwer') {
|
||
|
bat "dotnet clean"
|
||
|
}
|
||
|
}
|
||
|
stage('Build') {
|
||
|
dir('Serwer') {
|
||
|
bat "dotnet build --configuration Relase"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|