Compare commits
2 Commits
fb39efd493
...
7f0d14fc25
| Author | SHA1 | Date | |
|---|---|---|---|
| 7f0d14fc25 | |||
| 00975bb1c5 |
19
Jenkinsfile
vendored
Normal file
19
Jenkinsfile
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
pipeline {
|
||||
agent {
|
||||
label '.net7.0'
|
||||
}
|
||||
stages {
|
||||
stage('Build classlib') {
|
||||
steps {
|
||||
sh '''cd classlib
|
||||
dotnet build --no-incremental --force --configuration Release
|
||||
dotnet publish -c Release'''
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
success {
|
||||
archiveArtifacts artifacts: 'classlib/bin/Release/netstandard2.1/publish/*.dll, *.psd1, *.psm1, LICENSE, **/*.ps1xml, **/*.ps1', followSymlinks: false, onlyIfSuccessful: true
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user