Skip to content

Commit

Permalink
Merge pull request #38 from minhqdao/use-quotes-in-ci
Browse files Browse the repository at this point in the history
Update CI: Use quotes, update ifx version
  • Loading branch information
minhqdao authored Jul 28, 2024
2 parents 50fe93e + f3790fb commit 081c6a0
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 17 deletions.
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.

0 comments on commit 081c6a0

Please sign in to comment.