Merge pull request #16 from djbelyak/sh-permissions #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build NRD sample | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
Build-Windows: | |
runs-on: windows-latest | |
steps: | |
- | |
name : Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- | |
name: Install dependencies | |
uses: crazy-max/ghaction-chocolatey@v1 | |
with: | |
args: install windows-sdk-10.0 cmake -y | |
- | |
name: Install Vulkan | |
run: | | |
$ver = (Invoke-WebRequest -Uri "https://vulkan.lunarg.com/sdk/latest.json" | ConvertFrom-Json).windows | |
echo Vulkan SDK version $ver | |
$ProgressPreference = 'SilentlyContinue' | |
Invoke-WebRequest -Uri "https://sdk.lunarg.com/sdk/download/$ver/windows/VulkanSDK-$ver-Installer.exe" -OutFile VulkanSDK.exe | |
echo Downloaded | |
.\VulkanSDK.exe --root C:\VulkanSDK --accept-licenses --default-answer --confirm-command install | |
- | |
name: Deploy NRD Sample | |
run: | | |
$Env:VULKAN_SDK = "C:/VulkanSDK/" | |
$Env:Path += ";C:/VulkanSDK/Bin" | |
.\1-Deploy.bat | |
- | |
name: Build NRD Sample | |
run: | | |
$Env:VULKAN_SDK = "C:/VulkanSDK/" | |
$Env:Path += ";C:/VulkanSDK/Bin" | |
.\2-Build.bat | |
- | |
name: Upload NRD Sample as artefact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: NRD Sample | |
path: | | |
README.md | |
3-Run NRD sample.bat | |
_Bin/Release/ | |
_Data/ | |
_Shaders/ |