DynamicBuffer: ensure that the page size is at least 64 Kb #1887
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 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 |