Update apple_m.yml

This commit is contained in:
Martin Kroeker 2024-02-15 20:54:20 +01:00 committed by GitHub
parent 478f3bfd8a
commit 648347acc7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -46,9 +46,6 @@ jobs:
brew reinstall gcc
brew install coreutils cmake ccache
brew install llvm
- export PATH=/opt/homebrew/opt/llvm/bin:$PATH
- export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
- export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
else
echo "::error::$RUNNER_OS not supported"
exit 1
@ -90,6 +87,9 @@ jobs:
- name: Build OpenBLAS
run: |
export PATH=/opt/homebrew/opt/llvm/bin:$PATH
export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
case "${{ matrix.build }}" in
"make")
make -j$(nproc) DYNAMIC_ARCH=1 USE_OPENMP=${{matrix.openmp}} INTERFACE64=${{matrix.ilp64}} FC="ccache ${{ matrix.fortran }}"