Skip to content

Commit 025d3b1

Browse files
authored
Merge pull request #273 from bonachea/ci-fp-exceptions
[NO REVIEW] CI: Augment native multi-image test to detect regressions of issue #259
2 parents 0d1a26d + 746949e commit 025d3b1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,9 @@ jobs:
250250
- name: Run native multi-image test
251251
if: ${{ matrix.native_multi_image }}
252252
run: |
253-
set -x ; ./build/run-fpm.sh run --verbose
253+
set -x ; ./build/run-fpm.sh run --verbose 2>&1 | tee output ; \
254+
test ${PIPESTATUS[0]} = 0 && \
255+
! grep -q "IEEE arithmetic exceptions signaled" output
254256
255257
- name: Run unit tests
256258
run: |

0 commit comments

Comments
 (0)