mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-26 06:35:49 +03:00
17 lines
460 B
Groovy
17 lines
460 B
Groovy
node ( 'vs2017' )
|
|
{
|
|
stage 'Checkout'
|
|
checkout scm
|
|
|
|
stage 'Restore'
|
|
bat "dotnet restore Facepunch.Steamworks/Facepunch.Steamworks.csproj"
|
|
|
|
stage 'Build Release'
|
|
bat "dotnet build Facepunch.Steamworks/Facepunch.Steamworks.csproj --configuration Release"
|
|
|
|
stage 'Build Debug'
|
|
bat "dotnet build Facepunch.Steamworks/Facepunch.Steamworks.csproj --configuration Debug"
|
|
|
|
stage 'Archive'
|
|
archiveArtifacts artifacts: 'Facepunch.Steamworks/bin/**/*'
|
|
} |