diff options
| author | 2019-10-02 17:53:53 -0400 | |
|---|---|---|
| committer | 2019-10-02 17:53:53 -0400 | |
| commit | 49344111ccebf43d901c67fc7a9338516cb30d9d (patch) | |
| tree | 6511ba47dd88e3ef37f31231a4e41ec3d6572e60 | |
| parent | ci: Fix unset environment variable bug (diff) | |
| download | yuzu-49344111ccebf43d901c67fc7a9338516cb30d9d.tar.gz yuzu-49344111ccebf43d901c67fc7a9338516cb30d9d.tar.xz yuzu-49344111ccebf43d901c67fc7a9338516cb30d9d.zip | |
ci: Add Windows MSVC package script
| -rw-r--r-- | .ci/scripts/windows/upload.ps1 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.ci/scripts/windows/upload.ps1 b/.ci/scripts/windows/upload.ps1 new file mode 100644 index 000000000..de86e7390 --- /dev/null +++ b/.ci/scripts/windows/upload.ps1 | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | $GITDATE = $(git show -s --date=short --format='%ad') -replace "-","" | ||
| 2 | $GITREV = $(git show -s --format='%h') | ||
| 3 | $RELEASE_DIST = "yuzu-windows-msvc" | ||
| 4 | |||
| 5 | $MSVC_BUILD_ZIP = "yuzu-windows-msvc-$GITDATE-$GITREV.zip" -replace " ", "" | ||
| 6 | $MSVC_BUILD_PDB = "yuzu-windows-msvc-$GITDATE-$GITREV-debugsymbols.zip" -replace " ", "" | ||
| 7 | $MSVC_SEVENZIP = "yuzu-windows-msvc-$GITDATE-$GITREV.7z" -replace " ", "" | ||
| 8 | |||
| 9 | $env:BUILD_ZIP = $MSVC_BUILD_ZIP | ||
| 10 | $env:BUILD_SYMBOLS = $MSVC_BUILD_PDB | ||
| 11 | $env:BUILD_UPDATE = $MSVC_SEVENZIP | ||
| 12 | |||
| 13 | $BUILD_DIR = ".\build\bin\Release" | ||
| 14 | |||
| 15 | mkdir pdb | ||
| 16 | Get-ChildItem "$BUILD_DIR\" -Recurse -Filter "*.pdb" | Copy-Item -destination .\pdb | ||
| 17 | 7z a -tzip $MSVC_BUILD_PDB .\pdb\*.pdb | ||
| 18 | rm "$BUILD_DIR\*.pdb" | ||
| 19 | mkdir $RELEASE_DIST | ||
| 20 | mkdir "artifacts" | ||
| 21 | |||
| 22 | Copy-Item "$BUILD_DIR\*" -Destination $RELEASE_DIST -Recurse | ||
| 23 | rm "$RELEASE_DIST\*.exe" | ||
| 24 | Get-ChildItem "$BUILD_DIR" -Recurse -Filter "yuzu*.exe" | Copy-Item -destination $RELEASE_DIST | ||
| 25 | Get-ChildItem "$BUILD_DIR" -Recurse -Filter "QtWebEngineProcess*.exe" | Copy-Item -destination $RELEASE_DIST | ||
| 26 | Copy-Item .\license.txt -Destination $RELEASE_DIST | ||
| 27 | Copy-Item .\README.md -Destination $RELEASE_DIST | ||
| 28 | 7z a -tzip $MSVC_BUILD_ZIP $RELEASE_DIST\* | ||
| 29 | 7z a $MSVC_SEVENZIP $RELEASE_DIST | ||
| 30 | |||
| 31 | Get-ChildItem . -Filter "*.zip" | Copy-Item -destination "artifacts" | ||
| 32 | Get-ChildItem . -Filter "*.7z" | Copy-Item -destination "artifacts" \ No newline at end of file | ||