Update apple_m.yml
This commit is contained in:
parent
478f3bfd8a
commit
648347acc7
|
@ -46,9 +46,6 @@ jobs:
|
||||||
brew reinstall gcc
|
brew reinstall gcc
|
||||||
brew install coreutils cmake ccache
|
brew install coreutils cmake ccache
|
||||||
brew install llvm
|
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
|
else
|
||||||
echo "::error::$RUNNER_OS not supported"
|
echo "::error::$RUNNER_OS not supported"
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -90,6 +87,9 @@ jobs:
|
||||||
|
|
||||||
- name: Build OpenBLAS
|
- name: Build OpenBLAS
|
||||||
run: |
|
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
|
case "${{ matrix.build }}" in
|
||||||
"make")
|
"make")
|
||||||
make -j$(nproc) DYNAMIC_ARCH=1 USE_OPENMP=${{matrix.openmp}} INTERFACE64=${{matrix.ilp64}} FC="ccache ${{ matrix.fortran }}"
|
make -j$(nproc) DYNAMIC_ARCH=1 USE_OPENMP=${{matrix.openmp}} INTERFACE64=${{matrix.ilp64}} FC="ccache ${{ matrix.fortran }}"
|
||||||
|
|
Loading…
Reference in New Issue