Merge pull request #74 from 01Pollux/d3d12-nri-buffer-desc #73
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: NRI SDK | |
on: | |
pull_request: | |
branches: | |
- main | |
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 | |
run: | | |
$Env:VULKAN_SDK = "C:/VulkanSDK/" | |
$Env:Path += ";C:/VulkanSDK/Bin" | |
.\1-Deploy.bat | |
- | |
name: Build | |
run: | | |
$Env:VULKAN_SDK = "C:/VulkanSDK/" | |
$Env:Path += ";C:/VulkanSDK/Bin" | |
.\2-Build.bat | |
- | |
name: Prepare | |
run: | | |
&'.\3-Prepare NRI SDK.bat' --shaders | |
- | |
name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: NRI SDK | |
path: _NRI_SDK | |
Build-Ubuntu: | |
runs-on: ubuntu-20.04 | |
steps: | |
- | |
name : Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup CMake | |
uses: jwlawson/[email protected] | |
with: | |
cmake-version: '3.16.x' | |
- name: Setup Ninja | |
uses: seanmiddleditch/gha-setup-ninja@master | |
- name: Install Vulkan SDK | |
run: | | |
sudo apt install -y wget | |
wget -qO - http://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add - | |
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-focal.list http://packages.lunarg.com/vulkan/lunarg-vulkan-focal.list | |
sudo apt update | |
sudo apt install -y vulkan-sdk libwayland-dev | |
- | |
name: Deploy | |
run: | | |
mkdir "build" | |
cd "build" | |
cmake -G Ninja .. | |
cd .. | |
- | |
name: Build | |
run: | | |
cd "build" | |
cmake --build . | |
cd .. |