Disable most AppleM1 builds (replaced by gh workflows)
This commit is contained in:
parent
16b488cabe
commit
5b953f2f8d
70
.cirrus.yml
70
.cirrus.yml
|
@ -1,44 +1,44 @@
|
||||||
macos_instance:
|
macos_instance:
|
||||||
image: ghcr.io/cirruslabs/macos-monterey-xcode:latest
|
image: ghcr.io/cirruslabs/macos-monterey-xcode:latest
|
||||||
|
|
||||||
task:
|
#task:
|
||||||
name: AppleM1/LLVM
|
# name: AppleM1/LLVM
|
||||||
compile_script:
|
# compile_script:
|
||||||
- brew install llvm
|
# - brew install llvm
|
||||||
- export PATH=/opt/homebrew/opt/llvm/bin:$PATH
|
# - export PATH=/opt/homebrew/opt/llvm/bin:$PATH
|
||||||
- export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
|
# - export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
|
||||||
- export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
|
# - export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
|
||||||
- make TARGET=VORTEX USE_OPENMP=1 CC=clang
|
# - make TARGET=VORTEX USE_OPENMP=1 CC=clang
|
||||||
|
|
||||||
task:
|
#task:
|
||||||
name: AppleM1/LLVM/ILP64
|
# name: AppleM1/LLVM/ILP64
|
||||||
compile_script:
|
# compile_script:
|
||||||
- brew install llvm
|
# - brew install llvm
|
||||||
- export PATH=/opt/homebrew/opt/llvm/bin:$PATH
|
# - export PATH=/opt/homebrew/opt/llvm/bin:$PATH
|
||||||
- export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
|
# - export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
|
||||||
- export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
|
# - export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
|
||||||
- make TARGET=VORTEX USE_OPENMP=1 CC=clang INTERFACE64=1
|
# - make TARGET=VORTEX USE_OPENMP=1 CC=clang INTERFACE64=1
|
||||||
|
|
||||||
task:
|
#task:
|
||||||
name: AppleM1/LLVM/CMAKE
|
# name: AppleM1/LLVM/CMAKE
|
||||||
compile_script:
|
# compile_script:
|
||||||
- brew install llvm
|
# - brew install llvm
|
||||||
- export PATH=/opt/homebrew/opt/llvm/bin:$PATH
|
# - export PATH=/opt/homebrew/opt/llvm/bin:$PATH
|
||||||
- export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
|
# - export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
|
||||||
- export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
|
# - export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
|
||||||
- mkdir build
|
# - mkdir build
|
||||||
- cd build
|
# - cd build
|
||||||
- cmake -DTARGET=VORTEX -DCMAKE_C_COMPILER=clang -DBUILD_SHARED_LIBS=ON ..
|
# - cmake -DTARGET=VORTEX -DCMAKE_C_COMPILER=clang -DBUILD_SHARED_LIBS=ON ..
|
||||||
- make -j 4
|
# - make -j 4
|
||||||
|
|
||||||
task:
|
#task:
|
||||||
name: AppleM1/GCC/MAKE/OPENMP
|
# name: AppleM1/GCC/MAKE/OPENMP
|
||||||
compile_script:
|
# compile_script:
|
||||||
- brew install gcc@11
|
# - brew install gcc@11
|
||||||
- export PATH=/opt/homebrew/bin:$PATH
|
# - export PATH=/opt/homebrew/bin:$PATH
|
||||||
- export LDFLAGS="-L/opt/homebrew/lib"
|
# - export LDFLAGS="-L/opt/homebrew/lib"
|
||||||
- export CPPFLAGS="-I/opt/homebrew/include"
|
# - export CPPFLAGS="-I/opt/homebrew/include"
|
||||||
- make CC=gcc-11 FC=gfortran-11 USE_OPENMP=1
|
# - make CC=gcc-11 FC=gfortran-11 USE_OPENMP=1
|
||||||
|
|
||||||
macos_instance:
|
macos_instance:
|
||||||
image: ghcr.io/cirruslabs/macos-monterey-xcode:latest
|
image: ghcr.io/cirruslabs/macos-monterey-xcode:latest
|
||||||
|
|
Loading…
Reference in New Issue