Remove response size limits; add x64 build CI #1
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: ci | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: setup msbuild | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: build (release x64) | |
| shell: pwsh | |
| run: | | |
| msbuild .\\library.sln /p:Configuration=Release /p:Platform=x64 | |
| - name: collect build output | |
| shell: pwsh | |
| run: | | |
| New-Item -ItemType Directory -Force build-output | Out-Null | |
| Get-ChildItem -Path . -Recurse -Filter *.lib | ForEach-Object { | |
| Copy-Item -Path $_.FullName -Destination build-output -Force | |
| } | |
| - name: upload build-output | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: build-output | |
| path: build-output |