Skip to content

Commit d883f88

Browse files
authored
Migration from macOS 13 to macOS 14
* As macOS 13 is deprecated, here is a migration to macOS 14. * Support of GCC 14 * Update of the section "compilers" in the README
2 parents 7ee5aa8 + f2e99dd commit d883f88

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
os: [ubuntu-latest, macos-13]
22+
os: [ubuntu-latest, macos-14]
2323
toolchain:
2424
- {compiler: gcc, version: 10}
2525
- {compiler: gcc, version: 11}
2626
- {compiler: gcc, version: 12}
2727
- {compiler: gcc, version: 13}
28+
- {compiler: gcc, version: 14}
2829
- {compiler: intel, version: '2024.1'}
2930
build: [cmake]
3031
include:
@@ -35,10 +36,10 @@ jobs:
3536
build: cmake-inline
3637
toolchain: {compiler: gcc, version: 10}
3738
exclude:
38-
- os: macos-13
39+
- os: macos-14
3940
toolchain: {compiler: intel, version: '2024.1'}
40-
- os: macos-13
41-
toolchain: {compiler: gcc, version: 13}
41+
- os: macos-14
42+
toolchain: {compiler: gcc, version: 10}
4243
env:
4344
BUILD_DIR: ${{ matrix.build == 'cmake' && 'build' || '.' }}
4445

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,12 @@ The following combinations are tested on the default branch of stdlib:
8787

8888
Name | Version | Platform | Architecture
8989
--- | --- | --- | ---
90-
GCC Fortran | 10, 11, 12, 13 | Ubuntu 22.04.2 LTS | x86_64
91-
GCC Fortran | 10, 11, 12, 13 | macOS 12.6.3 (21G419) | x86_64
90+
GCC Fortran | 10, 11, 12, 13, 14 | Ubuntu 24.04.3 LTS | x86_64
91+
GCC Fortran | 11, 12, 13, 14 | macOS 14.7.6 (23H626) | x86_64
9292
GCC Fortran (MSYS) | 13 | Windows Server 2022 (10.0.20348 Build 1547) | x86_64
9393
GCC Fortran (MinGW) | 13 | Windows Server 2022 (10.0.20348 Build 1547) | x86_64
94-
Intel oneAPI LLVM | 2024.0 | Ubuntu 22.04.2 LTS | x86_64
95-
Intel oneAPI classic | 2023.1 | macOS 12.6.3 (21G419) | x86_64
94+
Intel oneAPI LLVM | 2024.1 | Ubuntu 24.04.3 LTS | x86_64
95+
Intel oneAPI classic | 2021.10 | Ubuntu 22.04.5 LTS | x86_64
9696

9797
The following combinations are known to work, but they are not tested in the CI:
9898

0 commit comments

Comments
 (0)