Skip to content

Commit 2954dc1

Browse files
authored
CI: Add NeoverseN2 build on the new Cobalt-100 (#5080)
* Add NeoverseN2 build
1 parent 7c3a920 commit 2954dc1

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/dynamic_arch.yml

+20
Original file line numberDiff line numberDiff line change
@@ -356,3 +356,23 @@ jobs:
356356
- name: Build OpenBLAS
357357
run: |
358358
make -j$(nproc) HOSTCC="ccache gcc" CC="ccache ${{ matrix.triple }}-gcc" FC="ccache ${{ matrix.triple }}-gfortran" ARCH=${{ matrix.target }} ${{ matrix.opts }}
359+
360+
neoverse_build:
361+
if: "github.repository == 'OpenMathLib/OpenBLAS'"
362+
runs-on: ubuntu-24.04-arm
363+
364+
steps:
365+
- name: Checkout repository
366+
uses: actions/checkout@v3
367+
368+
- name: Install Dependencies
369+
run: |
370+
sudo apt-get update
371+
sudo apt-get install -y gcc gfortran make
372+
373+
- name: Build OpenBLAS
374+
run: |
375+
make -j${nproc} TARGET=NEOVERSEN2
376+
make -j${nproc} TARGET=NEOVERSEN2 lapack-test
377+
378+

0 commit comments

Comments
 (0)