Browse Source

CI: Add NeoverseN2 build on the new Cobalt-100 (#5080)

* Add NeoverseN2 build
tags/v0.3.30
Martin Kroeker GitHub 1 year ago
parent
commit
2954dc1a70
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 20 additions and 0 deletions
  1. +20
    -0
      .github/workflows/dynamic_arch.yml

+ 20
- 0
.github/workflows/dynamic_arch.yml View File

@@ -356,3 +356,23 @@ jobs:
- name: Build OpenBLAS
run: |
make -j$(nproc) HOSTCC="ccache gcc" CC="ccache ${{ matrix.triple }}-gcc" FC="ccache ${{ matrix.triple }}-gfortran" ARCH=${{ matrix.target }} ${{ matrix.opts }}

neoverse_build:
if: "github.repository == 'OpenMathLib/OpenBLAS'"
runs-on: ubuntu-24.04-arm

steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y gcc gfortran make
- name: Build OpenBLAS
run: |
make -j${nproc} TARGET=NEOVERSEN2
make -j${nproc} TARGET=NEOVERSEN2 lapack-test

Loading…
Cancel
Save