From 0da13017e985739efc3f6c9d0a4bb8b49ba28408 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Wed, 22 Dec 2021 00:08:15 -0500 Subject: [PATCH] [CI] Run some CI builds with unsafe math optimizations --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 84cd5ae713..3607600432 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -315,7 +315,8 @@ jobs: run: | scons build extra_inc_dirs=$CONDA_PREFIX/include:$CONDA_PREFIX/include/eigen3 \ extra_lib_dirs=$CONDA_PREFIX/lib system_fmt=y system_eigen=y system_yamlcpp=y \ - system_sundials=y blas_lapack_libs='lapack,blas' -j2 VERBOSE=True debug=n + system_sundials=y blas_lapack_libs='lapack,blas' -j2 VERBOSE=True debug=n \ + optimize_flags='-O3 -ffast-math -fno-finite-math-only' - name: Test Cantera run: scons test show_long_tests=yes verbose_tests=yes