Disable most AppleM1 builds (replaced by gh workflows)

This commit is contained in:
Martin Kroeker 2024-02-22 22:41:08 +01:00 committed by GitHub
parent 16b488cabe
commit 5b953f2f8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 35 additions and 35 deletions

View File

@ -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