Skip to content

Commit

Permalink
fix: rebuild with LOST_FLOAT_MODE on test
Browse files Browse the repository at this point in the history
  • Loading branch information
mookums committed Nov 28, 2023
1 parent c42076e commit 46392c8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ jobs:
- name: Test Double
run: CXXFLAGS=-Werror make test -j$(($(nproc)+1))
- name: Test Float
run: CXXFLAGS=-Werror make test LOST_FLOAT_MODE=1 -j$(($(nproc)+1))
run:
# Recompile with LOST_FLOAT_MODE
make clean
CXXFLAGS=-Werror make test LOST_FLOAT_MODE=1 -j$(($(nproc)+1))

lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 46392c8

Please sign in to comment.