Skip to content

Commit

Permalink
fix: split into independent double and float builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mookums committed Nov 28, 2023
1 parent 08a5bd5 commit 8044f6e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Build
- name: Build Double
run: CXXFLAGS=-Werror make -j$(($(nproc)+1))
- name: Test Double
run: CXXFLAGS=-Werror make test -j$(($(nproc)+1))
- name: Build Float
run: CXXFLAGS=-Werror make clean all LOST_FLOAT_MODE=1 -j$(($(nproc)+1))
- name: Test Float
run: |
make clean
CXXFLAGS=-Werror make test LOST_FLOAT_MODE=1 -j$(($(nproc)+1))
run: CXXFLAGS=-Werror make test LOST_FLOAT_MODE=1 -j$(($(nproc)+1))

lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8044f6e

Please sign in to comment.