mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2025-01-14 15:48:06 +03:00
Update Jenkinsfile
This commit is contained in:
parent
caea5ccb9b
commit
e7deae2ae3
30
Jenkinsfile
vendored
30
Jenkinsfile
vendored
@ -4,18 +4,36 @@ node ( 'vs2017' )
|
|||||||
checkout scm
|
checkout scm
|
||||||
|
|
||||||
stage 'Restore'
|
stage 'Restore'
|
||||||
bat "dotnet restore Facepunch.Steamworks/Facepunch.Steamworks.csproj"
|
bat "dotnet restore Facepunch.Steamworks/Facepunch.Steamworks.Win32.csproj"
|
||||||
|
bat "dotnet restore Facepunch.Steamworks/Facepunch.Steamworks.Win64.csproj"
|
||||||
|
bat "dotnet restore Facepunch.Steamworks/Facepunch.Steamworks.Posix32.csproj"
|
||||||
|
bat "dotnet restore Facepunch.Steamworks/Facepunch.Steamworks.Posix64.csproj"
|
||||||
|
|
||||||
stage 'Build Release'
|
stage 'Build Release'
|
||||||
bat "dotnet build Facepunch.Steamworks/Facepunch.Steamworks.csproj --configuration Release"
|
bat "dotnet build Facepunch.Steamworks/Facepunch.Steamworks.Win32.csproj --configuration Release"
|
||||||
|
bat "dotnet build Facepunch.Steamworks/Facepunch.Steamworks.Win64.csproj --configuration Release"
|
||||||
|
bat "dotnet build Facepunch.Steamworks/Facepunch.Steamworks.Posix32.csproj --configuration Release"
|
||||||
|
bat "dotnet build Facepunch.Steamworks/Facepunch.Steamworks.Posix64.csproj --configuration Release"
|
||||||
|
|
||||||
stage 'Build Debug'
|
stage 'Build Debug'
|
||||||
bat "dotnet build Facepunch.Steamworks/Facepunch.Steamworks.csproj --configuration Debug"
|
bat "dotnet build Facepunch.Steamworks/Facepunch.Steamworks.Win32.csproj --configuration Debug"
|
||||||
|
bat "dotnet build Facepunch.Steamworks/Facepunch.Steamworks.Win64.csproj --configuration Debug"
|
||||||
|
bat "dotnet build Facepunch.Steamworks/Facepunch.Steamworks.Posix32.csproj --configuration Debug"
|
||||||
|
bat "dotnet build Facepunch.Steamworks/Facepunch.Steamworks.Posix64.csproj --configuration Debug"
|
||||||
|
|
||||||
stage 'Archive'
|
stage 'Archive'
|
||||||
archiveArtifacts artifacts: 'Facepunch.Steamworks/bin/**/*'
|
archiveArtifacts artifacts: 'Facepunch.Steamworks/bin/**/*'
|
||||||
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.dll UnityPlugin\\" )
|
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.Win32.dll UnityPlugin\\" )
|
||||||
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.pdb UnityPlugin\\" )
|
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.Win32.pdb UnityPlugin\\" )
|
||||||
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.xml UnityPlugin\\" )
|
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.Win32.xml UnityPlugin\\" )
|
||||||
|
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.Win64.dll UnityPlugin\\" )
|
||||||
|
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.Win64.pdb UnityPlugin\\" )
|
||||||
|
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.Win64.xml UnityPlugin\\" )
|
||||||
|
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.Posix32.dll UnityPlugin\\" )
|
||||||
|
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.Posix32.pdb UnityPlugin\\" )
|
||||||
|
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.Posix32.xml UnityPlugin\\" )
|
||||||
|
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.Posix64.dll UnityPlugin\\" )
|
||||||
|
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.Posix64.pdb UnityPlugin\\" )
|
||||||
|
bat( "copy /Y Facepunch.Steamworks\\bin\\Debug\\netstandard2.0\\Facepunch.Steamworks.Posix64.xml UnityPlugin\\" )
|
||||||
archiveArtifacts artifacts: 'UnityPlugin/**/*'
|
archiveArtifacts artifacts: 'UnityPlugin/**/*'
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user