Skip to content

Commit 10554a7

Browse files
committed
* .github/workflows/moocore.yml: Test more gcc versions.
1 parent 1351375 commit 10554a7

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/moocore.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31+
os: [ ubuntu-24.04 ]
32+
cc: [ gcc-12, gcc-13, gcc-14, clang-18 ]
33+
python-version: ['3.10']
3134
include:
32-
- { os: ubuntu-22.04, cc: gcc, python-version: '3.10' }
33-
- { os: ubuntu-24.04, cc: gcc-14, python-version: '3.10' }
34-
- { os: ubuntu-24.04, cc: clang, python-version: '3.10' }
35+
- { os: ubuntu-22.04, cc: gcc-10, python-version: '3.10' }
36+
- { os: ubuntu-22.04, cc: gcc-11, python-version: '3.10' }
3537
# FIXME: needs
3638
# * brew install xz
3739
# * fix options only available in GNU diff
@@ -68,12 +70,12 @@ jobs:
6870
python3 -m pip install --upgrade pip
6971
python3 -m pip install -r testsuite/requirements.txt
7072
71-
- name: make time
73+
- name: make time (DEBUG=0, -O3 -flto)
7274
run: |
7375
source env/bin/activate
7476
make -C c time
7577
76-
- name: make test
78+
- name: make test (DEBUG=1, -O3 -flto)
7779
run: |
7880
source env/bin/activate
7981
make -C c test OPT_CFLAGS="-O3 -flto"

0 commit comments

Comments
 (0)