Added SHADER_SOURCE_LANGUAGE_BYTECODE enum value (API256012) #2483
This file contains hidden or 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 NuGet package | |
| on: [push, pull_request] | |
| env: | |
| MSBuildEnableWorkloadResolver: false | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| toolset: [x64] | |
| config: [Debug, Release] | |
| runs-on: windows-latest | |
| name: Windows 10, ${{ matrix.config }} ${{ matrix.toolset }} | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - name: Install python packages | |
| working-directory: ${{github.workspace}} | |
| run: python -m pip install -r ./BuildTools/.NET/requirements.txt | |
| - name: Build and run | |
| working-directory: ${{github.workspace}} | |
| run: python ./BuildTools/.NET/dotnet-build-package.py -c ${{matrix.config}} -s ./BuildTools/.NET/dotnet-build-settings.json -d ./ --dotnet-tests --free-memory |