Bugfix some engines rounding instead of truncating level times in csq… #78
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: Compile csprogs.dat | |
| on: | |
| workflow_dispatch: | |
| push: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Compile csprogs.dat | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Compile using fteqcc | |
| run: | | |
| chmod +x ./keepsrc/fteqcc64 | |
| cd ./keepsrc | |
| ./fteqcc64 -v -Fkce -Fifvector -Fvectorlogic -src ./csqc -srcfile ./csprogs.src | |
| - name: Upload csprogs.dat | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: csprogs.dat | |
| path: csprogs.dat |