Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI: Use quotes, update ifx version #38

Merged
merged 11 commits into from
Jul 28, 2024
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
35 changes: 18 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
toolchain:
- { compiler: gcc, version: 13 }
- { compiler: intel, version: 2024.1 }
- { compiler: intel-classic, version: 2021.10 }
- { compiler: gcc, version: "13" }
- { compiler: intel, version: "2024.1" }
- { compiler: intel-classic, version: "2021.12" }
exclude:
- os: macos-latest
toolchain: { compiler: intel, version: 2024.1 }
- os: windows-latest
toolchain: { compiler: intel, version: 2024.1 }
- os: windows-latest
toolchain: { intel-classic, version: 2021.10 }
toolchain: { compiler: intel, version: "2024.1" }
- os: macos-latest
toolchain: { compiler: intel-classic, version: "2021.12" }
include:
- os: macos-latest
toolchain: { compiler: intel-classic, version: "2021.10" }
- os: ubuntu-latest
toolchain: { compiler: nvidia-hpc, version: 23.11 }
toolchain: { compiler: nvidia-hpc, version: "23.11" }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -40,15 +40,16 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
toolchain:
- { compiler: gcc, version: 13 }
- { compiler: intel, version: 2023.2 }
- { compiler: intel-classic, version: 2021.10 }
- { compiler: nvidia-hpc, version: 23.11 }
exclude:
- os: macos-latest
toolchain: { compiler: intel, version: 2023.2 }
- { compiler: gcc, version: "13" }
include:
- os: ubuntu-latest
toolchain: { compiler: intel, version: "2024.1" }
- os: ubuntu-latest
toolchain: { compiler: intel-classic, version: "2021.12" }
- os: macos-latest
toolchain: { compiler: nvidia-hpc, version: 23.11 }
toolchain: { compiler: intel-classic, version: "2021.10" }
- os: ubuntu-latest
toolchain: { compiler: nvidia-hpc, version: "23.11" }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ make

This will generate the static library `libversion-f.a` in the root directory. You can compile it alongside your project or link it using the `-L` and `-l` flags.

A dynamic library will also be created for use in your projects (suffix `.so` on Linux systems and `.dylib` on macOS).

If you wish to use a compiler other than `gfortran`, simply specify it by running:

```bash
Expand Down
File renamed without changes.
File renamed without changes.
Loading