Browse Source

Update apple_m.yml

pull/4469/head
Martin Kroeker GitHub 2 years ago
parent
commit
648347acc7
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      .github/workflows/apple_m.yml

+ 3
- 3
.github/workflows/apple_m.yml 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 }}"


Loading…
Cancel
Save