diff options
Diffstat (limited to '.ci')
| -rw-r--r-- | .ci/scripts/windows/upload.ps1 | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/.ci/scripts/windows/upload.ps1 b/.ci/scripts/windows/upload.ps1 index 62483607b..230dd6954 100644 --- a/.ci/scripts/windows/upload.ps1 +++ b/.ci/scripts/windows/upload.ps1 | |||
| @@ -47,6 +47,49 @@ Copy-Item .\CMakeModules -Recurse -Destination $MSVC_SOURCE | |||
| 47 | 7z a -r -ttar $MSVC_SOURCE_TAR $MSVC_SOURCE | 47 | 7z a -r -ttar $MSVC_SOURCE_TAR $MSVC_SOURCE |
| 48 | 7z a -r -txz $MSVC_SOURCE_TARXZ $MSVC_SOURCE_TAR | 48 | 7z a -r -txz $MSVC_SOURCE_TARXZ $MSVC_SOURCE_TAR |
| 49 | 49 | ||
| 50 | # Following section is quick hack to package artifacts differently for GitHub Actions | ||
| 51 | if ("$env:GITHUB_ACTIONS" -eq "true") { | ||
| 52 | echo "Hello GitHub Actions" | ||
| 53 | |||
| 54 | # Hopefully there is an exe in either .\build\bin or .\build\bin\Release | ||
| 55 | cp .\build\bin\yuzu*.exe .\artifacts\ | ||
| 56 | Copy-Item "$BUILD_DIR\*" -Destination "artifacts" -Recurse | ||
| 57 | Remove-Item .\artifacts\tests.exe -ErrorAction ignore | ||
| 58 | |||
| 59 | # None of the other GHA builds are including source, so commenting out today | ||
| 60 | #Copy-Item $MSVC_SOURCE_TARXZ -Destination "artifacts" | ||
| 61 | |||
| 62 | # Are debug symbols important? | ||
| 63 | # cp .\build\bin\yuzu*.pdb .\pdb\ | ||
| 64 | |||
| 65 | # Write out a tag BUILD_TAG to environment for the Upload step | ||
| 66 | # We're getting ${{ github.event.number }} as $env:PR_NUMBER" | ||
| 67 | echo "env:PR_NUMBER: $env:PR_NUMBER" | ||
| 68 | if (Test-Path env:PR_NUMBER) { | ||
| 69 | $PR_NUMBER = $env:PR_NUMBER.Substring(2) -as [int] | ||
| 70 | $PR_NUMBER_TAG = "pr"+([string]$PR_NUMBER).PadLeft(5,'0') | ||
| 71 | if ($PR_NUMBER -gt 1){ | ||
| 72 | $BUILD_TAG="verify-$PR_NUMBER_TAG-$GITDATE-$GITREV" | ||
| 73 | } else { | ||
| 74 | $BUILD_TAG = "verify-$GITDATE-$GITREV" | ||
| 75 | } | ||
| 76 | } else { | ||
| 77 | # If env:PR_NUMBER isn't set, we should still write out a variable | ||
| 78 | $BUILD_TAG = "verify-$GITDATE-$GITREV" | ||
| 79 | } | ||
| 80 | echo "BUILD_TAG=$BUILD_TAG" | ||
| 81 | echo "BUILD_TAG=$BUILD_TAG" >> $env:GITHUB_ENV | ||
| 82 | |||
| 83 | # For extra job, just the exe | ||
| 84 | $INDIVIDUAL_EXE = "yuzu-msvc-$BUILD_TAG.exe" | ||
| 85 | echo "INDIVIDUAL_EXE=$INDIVIDUAL_EXE" | ||
| 86 | echo "INDIVIDUAL_EXE=$INDIVIDUAL_EXE" >> $env:GITHUB_ENV | ||
| 87 | echo "Just the exe: $INDIVIDUAL_EXE" | ||
| 88 | cp .\artifacts\yuzu.exe .\$INDIVIDUAL_EXE | ||
| 89 | |||
| 90 | |||
| 91 | } else { | ||
| 92 | |||
| 50 | # Build the final release artifacts | 93 | # Build the final release artifacts |
| 51 | Copy-Item $MSVC_SOURCE_TARXZ -Destination $RELEASE_DIST | 94 | Copy-Item $MSVC_SOURCE_TARXZ -Destination $RELEASE_DIST |
| 52 | Copy-Item "$BUILD_DIR\*" -Destination $RELEASE_DIST -Recurse | 95 | Copy-Item "$BUILD_DIR\*" -Destination $RELEASE_DIST -Recurse |
| @@ -62,3 +105,7 @@ Get-ChildItem "$BUILD_DIR" -Recurse -Filter "QtWebEngineProcess*.exe" | Copy-Ite | |||
| 62 | Get-ChildItem . -Filter "*.zip" | Copy-Item -destination "artifacts" | 105 | Get-ChildItem . -Filter "*.zip" | Copy-Item -destination "artifacts" |
| 63 | Get-ChildItem . -Filter "*.7z" | Copy-Item -destination "artifacts" | 106 | Get-ChildItem . -Filter "*.7z" | Copy-Item -destination "artifacts" |
| 64 | Get-ChildItem . -Filter "*.tar.xz" | Copy-Item -destination "artifacts" | 107 | Get-ChildItem . -Filter "*.tar.xz" | Copy-Item -destination "artifacts" |
| 108 | } | ||
| 109 | # Extra items | ||
| 110 | git status | ||
| 111 | cp .\build\src\common\scm_rev.cpp .\artifacts | ||