Native: More work on GPU implementation (both D3D12 and Vulkan) #185
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 | |
on: | |
push: | |
branches: | |
- 'main' | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
- .github/workflows/build_native.yml | |
- 'src/native/**' | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
- .github/workflows/build_native.yml | |
- 'src/native/**' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v4 | |
with: | |
global-json-file: ./global.json | |
- name: Install Workloads | |
run: dotnet workload install android ios maccatalyst wasm-tools wasm-experimental | |
- name: Build/Pack | |
run: dotnet pack Alimer.sln --configuration Release -p:Packing=true |