Revert build scripts for merge

This commit is contained in:
John Gross
2019-02-28 08:28:33 -08:00
parent a237185e4c
commit 42a66b04c5
2 changed files with 4 additions and 8 deletions

View File

@@ -1,8 +1,6 @@
param([string]$previewPass)
pushd pushd
$steamData = "C:/Steam/Data-preview/" $steamData = "C:/Steam/Data/"
$steamCMDPath = "C:/Steam/steamcmd/" $steamCMDPath = "C:/Steam/steamcmd/"
$steamCMDZip = "C:/Steam/steamcmd.zip" $steamCMDZip = "C:/Steam/steamcmd.zip"
@@ -19,6 +17,6 @@ if (!(Test-Path $steamCMDPath)) {
} }
cd "$steamData" cd "$steamData"
& "$steamCMDPath/steamcmd.exe" "+login anonymous" "+force_install_dir $steamData" "+app_update 298740 -beta steamctg -betapassword $previewPass validate" "+quit" & "$steamCMDPath/steamcmd.exe" "+login anonymous" "+force_install_dir $steamData" "+app_update 298740" "+quit"
popd popd

6
Jenkinsfile vendored
View File

@@ -20,11 +20,9 @@ node {
} }
stage('Acquire SE') { stage('Acquire SE') {
withCredentials([string(credentialsId: 'previewSecretPass', variable: 'previewPass')]) { bat 'powershell -File Jenkins/jenkins-grab-se.ps1'
powershell "& Jenkins/jenkins-grab-se.ps1 $previewPass"
}
bat 'IF EXIST GameBinaries RMDIR GameBinaries' bat 'IF EXIST GameBinaries RMDIR GameBinaries'
bat 'mklink /J GameBinaries "C:/Steam/Data-preview/DedicatedServer64/"' bat 'mklink /J GameBinaries "C:/Steam/Data/DedicatedServer64/"'
} }
stage('Acquire NuGet Packages') { stage('Acquire NuGet Packages') {