-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add workflow action using fortran-lang/setup-fortran
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: ci | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
toolchain: | ||
- {compiler: gcc, version: 13} | ||
- {compiler: intel, version: '2023.2'} | ||
- {compiler: intel-classic, version: '2021.10'} | ||
- {compiler: nvidia-hpc, version: '23.11'} | ||
include: | ||
- os: ubuntu-latest | ||
toolchain: {compiler: gcc, version: 12} | ||
exclude: | ||
- os: macos-latest | ||
toolchain: {compiler: intel, version: '2023.2'} | ||
- os: macos-latest | ||
toolchain: {compiler: nvidia-hpc, version: '23.11'} | ||
- os: windows-latest | ||
toolchain: {compiler: nvidia-hpc, version: '23.11'} | ||
|
||
steps: | ||
- uses: fortran-lang/setup-fortran@v1 | ||
id: setup-fortran | ||
with: | ||
compiler: ${{ matrix.toolchain.compiler }} | ||
version: ${{ matrix.toolchain.version }} | ||
|
||
- run: | | ||
${{ env.FC }} ... # environment vars FC, CC, and CXX are set | ||
${{ steps.setup-fortran.outputs.fc }} ... # outputs work too |