mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-04-16 09:13:50 +00:00
Add update=none and shallow=true to extern/FidelityFX-FSR2 and extern/FidelityFX-SDK in .gitmodules. The 'Checkout' step runs git submodule update --init --force --depth=1 on all submodules, including the Kelsidavis FSR2/SDK forks, which fails because it tries to resolve a specific commit SHA via shallow fetch. The 'Fetch AMD FSR2 SDK' step already rm -rf's and re-clones both directories from the correct upstream repos, so the submodule checkout step is redundant and harmful. update=none causes git submodule update (and actions/checkout submodules:true) to skip these two entries. Local developers who want the FSR2/SDK must run the manual fetch step or use 'git submodule update --init <path>' explicitly.
18 lines
595 B
Text
18 lines
595 B
Text
[submodule "extern/imgui"]
|
|
path = extern/imgui
|
|
url = https://github.com/ocornut/imgui.git
|
|
shallow = true
|
|
[submodule "extern/vk-bootstrap"]
|
|
path = extern/vk-bootstrap
|
|
url = https://github.com/charles-lunarg/vk-bootstrap.git
|
|
shallow = true
|
|
[submodule "extern/FidelityFX-SDK"]
|
|
path = extern/FidelityFX-SDK
|
|
url = https://github.com/Kelsidavis/FidelityFX-SDK.git
|
|
shallow = true
|
|
update = none
|
|
[submodule "extern/FidelityFX-FSR2"]
|
|
path = extern/FidelityFX-FSR2
|
|
url = https://github.com/Kelsidavis/FidelityFX-FSR2.git
|
|
shallow = true
|
|
update = none
|