Skip to content

Commit 388ce94

Browse files
committed
Update dynamic_arch.yml
1 parent 39d5e44 commit 388ce94

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/dynamic_arch.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ permissions:
1111

1212
jobs:
1313
build:
14-
if: "github.repository == 'OpenMathLib/OpenBLAS' || github.event_name == 'workflow_dispatch'"
14+
if: "true || github.repository == 'OpenMathLib/OpenBLAS' || github.event_name == 'workflow_dispatch'"
1515
runs-on: ${{ matrix.os }}
1616

1717
strategy:
1818
fail-fast: false
1919
matrix:
2020
os: [ubuntu-latest, macos-latest, ubuntu-24.04-arm]
2121
cc: [gcc, clang, clang-21]
22-
fortran: [gfortran, flang]
22+
fortran: [gfortran, flang, flang-21]
2323
build: [cmake, make]
2424
exclude:
2525
- os: macos-latest
@@ -28,8 +28,12 @@ jobs:
2828
cc: clang-21
2929
- os: macos-latest
3030
fortran: flang
31+
- os: macos-latest
32+
fortran: flang-21
3133
- os: ubuntu-24.04-arm
3234
fortran: flang
35+
- os: ubuntu-24.04-arm
36+
fortran: flang-21
3337

3438
steps:
3539
- name: Checkout repository
@@ -55,7 +59,7 @@ jobs:
5559
EOF
5660
sudo apt-get update
5761
sudo apt-get install -y ccache
58-
if [ "${{ matrix.cc }}" == "clang-21" ]; then
62+
if [ "${{ matrix.cc }}" == "clang-21" ] || [ "${{ matrix.fortran }}" == "flang-21" ]; then
5963
wget https://apt.llvm.org/llvm.sh
6064
chmod +x llvm.sh
6165
sudo ./llvm.sh 21

0 commit comments

Comments
 (0)