Added Jenkinsfile
Some checks failed
EllieBotDevs/EllieHub/pipeline/head There was a failure building this commit
Some checks failed
EllieBotDevs/EllieHub/pipeline/head There was a failure building this commit
This commit is contained in:
parent
d997fa5952
commit
d210f77ecb
1 changed files with 15 additions and 0 deletions
15
Jenkinsfile
vendored
Normal file
15
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage('Setup Dependencies') {
|
||||
steps {
|
||||
sh 'dotnet restore'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh 'dotnet build -c Release'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue