Skip to content

Commit

Permalink
ci: add flang
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed May 21, 2024
1 parent bebaa1d commit 3fac4d7
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/ci_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:

jobs:

linux_macos:
gcc-new:
runs-on: ${{ matrix.os }}
timeout-minutes: 10

Expand Down Expand Up @@ -46,6 +46,28 @@ jobs:
- run: cmake --workflow --preset default


linux-flang:
runs-on: ubuntu-24.04
timeout-minutes: 15

strategy:
matrix:
clang-version: [18]

env:
CC: clang-${{ matrix.clang-version }}
CXX: clang++-${{ matrix.clang-version }}
FC: flang-new

steps:
- uses: actions/checkout@v4

- name: install Flang
run: sudo apt install --no-install-recommends flang

- run: cmake --workflow --preset default


gcc-old:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
Expand Down

0 comments on commit 3fac4d7

Please sign in to comment.