replace marker buffer with ring buffer #255
Workflow file for this run
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-all | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v1 | |
| - name: Download and install Free Pascal | |
| run: | | |
| echo "Downloading Free Pascal..." | |
| curl https://downloads.freepascal.org/fpc/dist/3.2.2/i386-win32/fpc-3.2.2.i386-win32.exe -o fpc-3.2.2.i386-win32.exe | |
| echo "Installing Free Pascal..." | |
| ./fpc-3.2.2.i386-win32.exe /VERYSILENT /ALLUSERS | |
| echo "Waiting for install to finish..." | |
| Wait-Process -Name "fpc-3.2.2.i386-win32" | |
| echo "Done!" | |
| echo "C:\FPC\3.2.2\bin\i386-Win32" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
| - name: Setup MSBuild | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Build Debug|X86 | |
| run: msbuild .\SecondRealityW32.sln /p:Configuration=Debug /p:Platform=x86 | |
| - name: Build Release|X86 | |
| run: msbuild .\SecondRealityW32.sln /p:Configuration=Release /p:Platform=x86 | |
| - name: Copy files into Dist dir | |
| run: | | |
| copy SECOND_W32.EXE Dist/ | |
| copy REALITY.FC Dist/ | |
| - name: Create artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: w32nd_real | |
| path: Dist/ |