Add steps to Jenkinsfile
This commit is contained in:
parent
8573fcc10e
commit
543eb3449f
16
Jenkinsfile
vendored
16
Jenkinsfile
vendored
@ -1,18 +1,24 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
stages {
|
stages {
|
||||||
stage('Restore') {
|
stage('Restore') {
|
||||||
|
steps {
|
||||||
dir('Serwer') {
|
dir('Serwer') {
|
||||||
bat "dotnet restore"
|
bat "dotnet restore"
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
stage('Clean') {
|
stage('Clean') {
|
||||||
dir('Serwer') {
|
steps {
|
||||||
bat "dotnet clean"
|
dir('Serwer') {
|
||||||
|
bat "dotnet clean"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
dir('Serwer') {
|
steps {
|
||||||
bat "dotnet build --configuration Relase"
|
dir('Serwer') {
|
||||||
|
bat "dotnet build --configuration Relase"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user