Skip to content

Commit 6dbc5c4

Browse files
committed
Limit build options and python versions to see if the testing can pass again
1 parent ebce146 commit 6dbc5c4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/testing.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false # Probably want to turn this off for a large matrix
2424
matrix:
2525
os: [ubuntu-latest, macos-latest]
26-
python-version: ["3.8", "3.12"]
26+
python-version: ["3.12"]
2727
build: [debug, opt]
2828
toolchain:
2929
- {compiler: gcc, version: 14}
@@ -84,7 +84,8 @@ jobs:
8484
export FFLAGS="-O0 -g -fcheck=all -fbacktrace -fbounds-check -ffpe-trap=invalid,zero,overflow -finit-real=nan -finit-integer=nan -Wall -Wunderflow -Wextra -Wconversion -Wuninitialized -Warray-bounds -Wshadow -Wno-unused-function -Wno-unused-variable -Wno-unused-parameter -Wno-unused-label -Wno-unused-but-set-variable"
8585
export CFLAGS=""
8686
elif [ "${{ matrix.build }}" = "opt" ]; then
87-
export FFLAGS="-O1 -funroll-loops -finline-functions -ftree-vectorize -fstack-protector-strong -flto -march=native"
87+
# export FFLAGS="-O1 -funroll-loops -finline-functions -ftree-vectorize -fstack-protector-strong -flto -march=native"
88+
export FFLAGS=""
8889
export CFLAGS=""
8990
else
9091
echo "Unknown build type: ${{ matrix.build }}"

0 commit comments

Comments
 (0)