Skip to content

Commit f359f12

Browse files
authored
Merge pull request #1801 from CEED/jeremy/actions-versions
actions - use latest gcc
2 parents 7481867 + ed1ebff commit f359f12

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/c-fortan-test-ppc64le.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-24.04]
14-
compiler: [gcc-13]
14+
compiler: [gcc]
1515
arch: [ppc64le]
1616
distro: [ubuntu22.04]
1717

@@ -24,7 +24,7 @@ jobs:
2424
uses: uraimo/run-on-arch-action@v3
2525
env:
2626
CC: ${{ matrix.compiler }}
27-
FC: gfortran-13
27+
FC: gfortran
2828
id: runcmd
2929
with:
3030
arch: ${{ matrix.arch }}

.github/workflows/c-fortran-test-arm64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-24.04-arm]
14-
compiler: [gcc-13, clang]
14+
compiler: [gcc, clang]
1515

1616
runs-on: ${{ matrix.os }}
1717

@@ -21,7 +21,7 @@ jobs:
2121
- name: Build and test libCEED
2222
env:
2323
CC: ${{ matrix.compiler }}
24-
FC: gfortran-13
24+
FC: gfortran
2525
run: |
2626
make info
2727
make -j

.github/workflows/c-fortran-test-linux-osx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-24.04, macos-15]
14-
compiler: [gcc-13, clang]
14+
compiler: [gcc, clang]
1515

1616
runs-on: ${{ matrix.os }}
1717

@@ -21,7 +21,7 @@ jobs:
2121
- name: Build and test libCEED
2222
env:
2323
CC: ${{ matrix.compiler }}
24-
FC: gfortran-13
24+
FC: gfortran-14
2525
run: |
2626
make info
2727
make -j

.github/workflows/c-fortran-test-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: C style
2727
env:
2828
CC: ${{ matrix.compiler }}
29-
FC: gfortran-11
29+
FC: gfortran
3030
run: |
3131
make info
3232
make format-c -j CLANG_FORMAT=clang-format-19 && git diff --exit-code

.github/workflows/python-test-with-style.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-24.04]
14-
compiler: [gcc-13]
14+
compiler: [gcc]
1515
python-version: ['3.x']
1616

1717
runs-on: ${{ matrix.os }}
@@ -30,7 +30,7 @@ jobs:
3030
- name: Python test
3131
env:
3232
CC: ${{ matrix.compiler }}
33-
FC: gfortran-13
33+
FC: gfortran
3434
run: |
3535
make info
3636
make -j2
@@ -42,12 +42,12 @@ jobs:
4242
- name: Python style
4343
env:
4444
CC: ${{ matrix.compiler }}
45-
FC: gfortran-13
45+
FC: gfortran
4646
run: |
4747
make format-py && git diff --exit-code
4848
- name: Python version
4949
env:
5050
CC: ${{ matrix.compiler }}
51-
FC: gfortran-13
51+
FC: gfortran
5252
run: |
5353
make vermin

.github/workflows/rust-test-with-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Rust test with coverage
3232
env:
3333
CC: ${{ matrix.compiler }}
34-
FC: gfortran-11
34+
FC: gfortran
3535
run: cargo llvm-cov test --doctests --lcov --output-path lcov.info
3636
- name: Codecov upload
3737
uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)