Bugfix some engines rounding instead of truncating level times in csq… #134
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 progs.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 progs.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 | |
| - name: Upload progs.dat | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: progs.dat | |
| path: progs.dat |