mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-25 06:05:46 +03:00
Jenkinsfile
This commit is contained in:
parent
2c343d27b1
commit
8d2ccf0538
14
Jenkinsfile
vendored
Normal file
14
Jenkinsfile
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
node {
|
||||
stage 'Checkout'
|
||||
checkout scm
|
||||
|
||||
stage 'Build'
|
||||
bat 'nuget restore Facepunch.Steamworks.sln'
|
||||
bat "\"${tool 'MSBuild'}\" Facepunch.Steamworks/Facepunch.Steamworks.csproj /p:Configuration=Release /p:ProductVersion=1.0.0.${env.BUILD_NUMBER}"
|
||||
bat "\"${tool 'MSBuild'}\" Facepunch.Steamworks/Facepunch.Steamworks.csproj /p:Configuration=Debug /p:ProductVersion=1.0.0.${env.BUILD_NUMBER}"
|
||||
|
||||
stage 'Archive'
|
||||
archiveArtifacts Release: 'Facepunch.Steamworks/bin/Release/**'
|
||||
archiveArtifacts Debug: 'Facepunch.Steamworks/bin/Debug/**'
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user