Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
eacec2ae
There was an error fetching the commit references. Please try again later.
Commit
eacec2ae
authored
2 years ago
by
Morph
Browse files
Options
Downloads
Patches
Plain Diff
ci: Download and install Vulkan SDK directly from LunarG
parent
45ea712d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.ci/scripts/windows/install-vulkan-sdk.ps1
+33
-0
33 additions, 0 deletions
.ci/scripts/windows/install-vulkan-sdk.ps1
.ci/templates/build-msvc.yml
+6
-3
6 additions, 3 deletions
.ci/templates/build-msvc.yml
.github/workflows/verify.yml
+4
-1
4 additions, 1 deletion
.github/workflows/verify.yml
with
43 additions
and
4 deletions
.ci/scripts/windows/install-vulkan-sdk.ps1
0 → 100644
+
33
−
0
View file @
eacec2ae
# SPDX-FileCopyrightText: 2023 yuzu Emulator Project
# SPDX-License-Identifier: GPL-3.0-or-later
$Error
ActionPreference
=
"Stop"
$VulkanSDKVer
=
"1.3.243.0"
$ExeFile
=
"VulkanSDK-
$VulkanSDKVer
-Installer.exe"
$Uri
=
"https://sdk.lunarg.com/sdk/download/
$VulkanSDKVer
/windows/
$ExeFile
"
$Destination
=
"./
$ExeFile
"
echo
"Downloading Vulkan SDK
$VulkanSDKVer
from
$Uri
"
$WebClient
=
New-Object
System.Net.WebClient
$WebClient
.
DownloadFile
(
$Uri
,
$Destination
)
echo
"Finished downloading
$ExeFile
"
$VULKAN_SDK
=
"C:/VulkanSDK/
$VulkanSDKVer
"
$Arguments
=
"--root
`"
$VULKAN_SDK
`"
--accept-licenses --default-answer --confirm-command install"
echo
"Installing Vulkan SDK
$VulkanSDKVer
"
$InstallProcess
=
Start-Process
-FilePath
$Destination
-NoNewWindow
-PassThru
-Wait
-ArgumentList
$Arguments
$ExitCode
=
$InstallProcess
.
ExitCode
if
(
$ExitCode
-ne
0
)
{
echo
"Error installing Vulkan SDK
$VulkanSDKVer
(Error:
$ExitCode
)"
Exit
$ExitCode
}
echo
"Finished installing Vulkan SDK
$VulkanSDKVer
"
if
(
"
$
env
:
GITHUB_ACTIONS
"
-eq
"true"
)
{
echo
"VULKAN_SDK=
$VULKAN_SDK
"
|
Out-File
-FilePath
$
env
:
GITHUB_ENV
-Encoding
utf8
-Append
echo
"
$VULKAN_SDK
/Bin"
|
Out-File
-FilePath
$
env
:
GITHUB_PATH
-Encoding
utf8
-Append
}
This diff is collapsed.
Click to expand it.
.ci/templates/build-msvc.yml
+
6
−
3
View file @
eacec2ae
...
...
@@ -7,9 +7,12 @@ parameters:
version
:
'
'
steps
:
-
script
:
choco install vulkan-sdk
displayName
:
'
Install
vulkan-sdk'
-
script
:
refreshenv && mkdir build && cd build && cmake -E env CXXFLAGS="/Gw /GA /Gr /Ob2" cmake -G "Visual Studio 17 2022" -A x64 -DCMAKE_POLICY_DEFAULT_CMP0069=NEW -DYUZU_ENABLE_LTO=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=${COMPAT} -DYUZU_TESTS=OFF -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DDISPLAY_VERSION=${{ parameters['version'] }} -DCMAKE_BUILD_TYPE=Release -DYUZU_CRASH_DUMPS=ON .. && cd ..
-
task
:
Powershell@2
displayName
:
'
Install
Vulkan
SDK'
inputs
:
targetType
:
'
filePath'
filePath
:
'
./.ci/scripts/windows/install-vulkan-sdk.ps1'
-
script
:
refreshenv && glslangValidator --version && mkdir build && cd build && cmake -E env CXXFLAGS="/Gw /GA /Gr /Ob2" cmake -G "Visual Studio 17 2022" -A x64 -DCMAKE_POLICY_DEFAULT_CMP0069=NEW -DYUZU_ENABLE_LTO=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=${COMPAT} -DYUZU_TESTS=OFF -DUSE_DISCORD_PRESENCE=ON -DENABLE_QT_TRANSLATION=ON -DDISPLAY_VERSION=${{ parameters['version'] }} -DCMAKE_BUILD_TYPE=Release -DYUZU_CRASH_DUMPS=ON .. && cd ..
displayName
:
'
Configure
CMake'
-
task
:
MSBuild@1
displayName
:
'
Build'
...
...
This diff is collapsed.
Click to expand it.
.github/workflows/verify.yml
+
4
−
1
View file @
eacec2ae
...
...
@@ -84,13 +84,16 @@ jobs:
# due to how chocolatey works, only cmd.exe is supported here
shell
:
cmd
run
:
|
choco install
vulkan-sdk
wget
choco install wget
call refreshenv
wget https://github.com/mbitsnbites/buildcache/releases/download/v0.27.6/buildcache-windows.zip
7z x buildcache-windows.zip
copy buildcache\bin\buildcache.exe C:\ProgramData\chocolatey\bin
rmdir buildcache
echo %PATH% >> %GITHUB_PATH%
-
name
:
Install Vulkan SDK
shell
:
pwsh
run
:
.\.ci\scripts\windows\install-vulkan-sdk.ps1
-
name
:
Set up MSVC
uses
:
ilammy/msvc-dev-cmd@v1
-
uses
:
actions/checkout@v3
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment