Notes added for native performance #77
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
# Builds Windows x64 and ARM variants | |
name: Visual Studio | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
configurations: [Debug, Release] | |
platforms: [x64, ARM64] | |
env: | |
SOLUTION_FILE_PATH: HelloWebGPU.sln | |
BUILD_CONFIGURATION: ${{matrix.configurations}} | |
BUILD_PLATFORM: ${{matrix.platforms}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Add MSBuild to PATH | |
uses: microsoft/[email protected] | |
- name: Build | |
working-directory: ${{env.GITHUB_WORKSPACE}} | |
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:Platform=${{env.BUILD_PLATFORM}} ${{env.SOLUTION_FILE_PATH}} |