summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.ci/scripts/linux/exec.sh7
-rw-r--r--.ci/scripts/windows/upload.ps150
-rw-r--r--.github/workflows/verify.yml9
3 files changed, 64 insertions, 2 deletions
diff --git a/.ci/scripts/linux/exec.sh b/.ci/scripts/linux/exec.sh
index fc4594d65..78e8aeabf 100644
--- a/.ci/scripts/linux/exec.sh
+++ b/.ci/scripts/linux/exec.sh
@@ -4,5 +4,10 @@ mkdir -p "ccache" || true
4chmod a+x ./.ci/scripts/linux/docker.sh 4chmod a+x ./.ci/scripts/linux/docker.sh
5# the UID for the container yuzu user is 1027 5# the UID for the container yuzu user is 1027
6sudo chown -R 1027 ./ 6sudo chown -R 1027 ./
7docker run -e ENABLE_COMPATIBILITY_REPORTING -e CCACHE_DIR=/yuzu/ccache -v "$(pwd):/yuzu" -w /yuzu yuzuemu/build-environments:linux-fresh /bin/bash /yuzu/.ci/scripts/linux/docker.sh "$1" 7
8# The environment variables listed below:
9# AZURECIREPO TITLEBARFORMATIDLE TITLEBARFORMATRUNNING DISPLAYVERSION
10# are requested in src/common/CMakeLists.txt and appear to be provided somewhere in Azure DevOps
11
12docker run -e AZURECIREPO -e TITLEBARFORMATIDLE -e TITLEBARFORMATRUNNING -e DISPLAYVERSION -e ENABLE_COMPATIBILITY_REPORTING -e CCACHE_DIR=/yuzu/ccache -v "$(pwd):/yuzu" -w /yuzu yuzuemu/build-environments:linux-fresh /bin/bash /yuzu/.ci/scripts/linux/docker.sh "$1"
8sudo chown -R $UID ./ 13sudo chown -R $UID ./
diff --git a/.ci/scripts/windows/upload.ps1 b/.ci/scripts/windows/upload.ps1
index 62483607b..ac2a38f1d 100644
--- a/.ci/scripts/windows/upload.ps1
+++ b/.ci/scripts/windows/upload.ps1
@@ -25,6 +25,9 @@ $env:BUILD_UPDATE = $MSVC_SEVENZIP
25 25
26$BUILD_DIR = ".\build\bin\Release" 26$BUILD_DIR = ".\build\bin\Release"
27 27
28# Cleanup unneeded data in submodules
29git submodule foreach git clean -fxd
30
28# Upload debugging symbols 31# Upload debugging symbols
29mkdir pdb 32mkdir pdb
30Get-ChildItem "$BUILD_DIR\" -Recurse -Filter "*.pdb" | Copy-Item -destination .\pdb 33Get-ChildItem "$BUILD_DIR\" -Recurse -Filter "*.pdb" | Copy-Item -destination .\pdb
@@ -47,6 +50,49 @@ Copy-Item .\CMakeModules -Recurse -Destination $MSVC_SOURCE
477z a -r -ttar $MSVC_SOURCE_TAR $MSVC_SOURCE 507z a -r -ttar $MSVC_SOURCE_TAR $MSVC_SOURCE
487z a -r -txz $MSVC_SOURCE_TARXZ $MSVC_SOURCE_TAR 517z a -r -txz $MSVC_SOURCE_TARXZ $MSVC_SOURCE_TAR
49 52
53# Following section is quick hack to package artifacts differently for GitHub Actions
54if ("$env:GITHUB_ACTIONS" -eq "true") {
55 echo "Hello GitHub Actions"
56
57 # Hopefully there is an exe in either .\build\bin or .\build\bin\Release
58 cp .\build\bin\yuzu*.exe .\artifacts\
59 Copy-Item "$BUILD_DIR\*" -Destination "artifacts" -Recurse
60 Remove-Item .\artifacts\tests.exe -ErrorAction ignore
61
62 # None of the other GHA builds are including source, so commenting out today
63 #Copy-Item $MSVC_SOURCE_TARXZ -Destination "artifacts"
64
65 # Are debug symbols important?
66 # cp .\build\bin\yuzu*.pdb .\pdb\
67
68 # Write out a tag BUILD_TAG to environment for the Upload step
69 # We're getting ${{ github.event.number }} as $env:PR_NUMBER"
70 echo "env:PR_NUMBER: $env:PR_NUMBER"
71 if (Test-Path env:PR_NUMBER) {
72 $PR_NUMBER = $env:PR_NUMBER.Substring(2) -as [int]
73 $PR_NUMBER_TAG = "pr"+([string]$PR_NUMBER).PadLeft(5,'0')
74 if ($PR_NUMBER -gt 1){
75 $BUILD_TAG="verify-$PR_NUMBER_TAG-$GITDATE-$GITREV"
76 } else {
77 $BUILD_TAG = "verify-$GITDATE-$GITREV"
78 }
79 } else {
80 # If env:PR_NUMBER isn't set, we should still write out a variable
81 $BUILD_TAG = "verify-$GITDATE-$GITREV"
82 }
83 echo "BUILD_TAG=$BUILD_TAG"
84 echo "BUILD_TAG=$BUILD_TAG" >> $env:GITHUB_ENV
85
86 # For extra job, just the exe
87 $INDIVIDUAL_EXE = "yuzu-msvc-$BUILD_TAG.exe"
88 echo "INDIVIDUAL_EXE=$INDIVIDUAL_EXE"
89 echo "INDIVIDUAL_EXE=$INDIVIDUAL_EXE" >> $env:GITHUB_ENV
90 echo "Just the exe: $INDIVIDUAL_EXE"
91 cp .\artifacts\yuzu.exe .\$INDIVIDUAL_EXE
92
93
94} else {
95
50# Build the final release artifacts 96# Build the final release artifacts
51Copy-Item $MSVC_SOURCE_TARXZ -Destination $RELEASE_DIST 97Copy-Item $MSVC_SOURCE_TARXZ -Destination $RELEASE_DIST
52Copy-Item "$BUILD_DIR\*" -Destination $RELEASE_DIST -Recurse 98Copy-Item "$BUILD_DIR\*" -Destination $RELEASE_DIST -Recurse
@@ -62,3 +108,7 @@ Get-ChildItem "$BUILD_DIR" -Recurse -Filter "QtWebEngineProcess*.exe" | Copy-Ite
62Get-ChildItem . -Filter "*.zip" | Copy-Item -destination "artifacts" 108Get-ChildItem . -Filter "*.zip" | Copy-Item -destination "artifacts"
63Get-ChildItem . -Filter "*.7z" | Copy-Item -destination "artifacts" 109Get-ChildItem . -Filter "*.7z" | Copy-Item -destination "artifacts"
64Get-ChildItem . -Filter "*.tar.xz" | Copy-Item -destination "artifacts" 110Get-ChildItem . -Filter "*.tar.xz" | Copy-Item -destination "artifacts"
111}
112# Extra items
113git status
114cp .\build\src\common\scm_rev.cpp .\artifacts
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml
index 88e3a9a72..887220441 100644
--- a/.github/workflows/verify.yml
+++ b/.github/workflows/verify.yml
@@ -3,6 +3,8 @@ name: 'yuzu verify'
3on: 3on:
4 pull_request: 4 pull_request:
5 branches: [ master ] 5 branches: [ master ]
6env:
7 PR_NUMBER: pr${{ github.event.number }}
6 8
7jobs: 9jobs:
8 format: 10 format:
@@ -99,7 +101,7 @@ jobs:
99 run: | 101 run: |
100 glslangValidator --version 102 glslangValidator --version
101 mkdir build 103 mkdir build
102 cmake . -B build -GNinja -DCMAKE_TOOLCHAIN_FILE="CMakeModules/MSVCCache.cmake" -DUSE_CCACHE=ON -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=1 -DYUZU_USE_QT_WEB_ENGINE=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DYUZU_ENABLE_COMPATIBILITY_REPORTING=ON -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DCMAKE_BUILD_TYPE=Release -DYUZU_TESTS=OFF -DYUZU_USE_BUNDLED_VCPKG=ON 104 cmake . -B build -GNinja -DCMAKE_TOOLCHAIN_FILE="CMakeModules/MSVCCache.cmake" -DUSE_CCACHE=ON -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=1 -DYUZU_USE_QT_WEB_ENGINE=ON -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DYUZU_ENABLE_COMPATIBILITY_REPORTING=ON -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DCMAKE_BUILD_TYPE=Release -DGIT_BRANCH=pr-verify -DCLANG_FORMAT_SUFFIX=discordplzdontclang -DYUZU_TESTS=OFF -DYUZU_USE_BUNDLED_VCPKG=ON
103 - name: Build 105 - name: Build
104 run: cmake --build build 106 run: cmake --build build
105 - name: Cache Summary 107 - name: Cache Summary
@@ -112,3 +114,8 @@ jobs:
112 with: 114 with:
113 name: msvc 115 name: msvc
114 path: artifacts/ 116 path: artifacts/
117 - name: Upload EXE
118 uses: actions/upload-artifact@v3
119 with:
120 name: ${{ env.INDIVIDUAL_EXE }}
121 path: ${{ env.INDIVIDUAL_EXE }}