Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions .github/compat/matrix.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
os:
- ubuntu-24.04
- ubuntu-22.04
- ubuntu-20.04
- macos-14
- macos-13
- windows-2022
- windows-2019
toolchain:
- {compiler: gcc, version: 14}
- {compiler: gcc, version: 13}
- {compiler: gcc, version: 12}
- {compiler: gcc, version: 11}
- {compiler: gcc, version: 10}
- {compiler: gcc, version: 9}
- {compiler: intel, version: '2025.0'}
- {compiler: intel, version: '2024.1'}
- {compiler: intel, version: '2024.0'}
Expand Down Expand Up @@ -89,11 +87,4 @@ exclude:
- os: windows-2022
toolchain: {compiler: nvidia-hpc}
- os: windows-2019
toolchain: {compiler: nvidia-hpc}
# gcc<=10 not available for ARM mac
- os: macos-14
toolchain: {compiler: gcc, version: 8}
- os: macos-14
toolchain: {compiler: gcc, version: 9}
- os: macos-14
toolchain: {compiler: gcc, version: 10}
toolchain: {compiler: nvidia-hpc}
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ jobs:

- name: Upload compatibility report
if: needs.options.outputs.mode == 'report'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: compat
name: compat-${{ matrix.os }}-${{ matrix.toolchain.compiler }}-${{ matrix.toolchain.version }}
path: compat/*.csv

compat:
Expand All @@ -143,10 +143,11 @@ jobs:
run: pip install -r requirements.txt

- name: Download reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: compat
pattern: compat-*
path: compat
merge-multiple: true

- name: Concatenate reports
run: |
Expand All @@ -160,7 +161,7 @@ jobs:
cat compat.md

- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: compat
path: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
toolchain:
- {compiler: gcc, version: 13}
- {compiler: intel, version: '2023.2'}
- {compiler: intel, version: '2025.0'}
- {compiler: intel-classic, version: '2021.10'}
- {compiler: nvidia-hpc, version: '23.11'}
include:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ runs:
install_intel $platform true
;;
intel)
version=${VERSION:-2024.1}
version=${VERSION:-2025.0}
install_intel $platform false
;;
nvidia-hpc)
Expand Down
Loading