home/.cirrus.yml
Johannes Altmanninger ecae85f8af cirrus: fix installation of gcc 10 on macOS
Cirrus CI switched macOS machines to M1 where "brew install gcc@10"
fails due to architecture mismatch.  I'm not sure if it's possible
to install gcc 10 natively for ARM. Let's work around this by
installing the x86_64 compatibility layer. Apparently we need
to install a x86_64 Homebrew to install x86_64 packages.
2023-03-05 17:42:41 +01:00

51 lines
1.4 KiB
YAML

freebsd_task:
freebsd_instance:
image_family: freebsd-13-0
gmake_script: pkg install -y gmake
matrix:
- name: freebsd_clang
env:
CXX: clang++
- name: freebsd_gcc
gcc_script: pkg install -y gcc
env:
CXX: g++
test_script: gmake -j4 test
env:
LC_ALL: en_US.UTF-8
linux_task:
locales_script:
- apt-get update && apt-get -y install locales
- echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
- locale-gen en_US.UTF-8
matrix:
- name: linux_clang
container:
image: silkeh/clang:11
env:
CXX: clang++
- name: linux_gcc
container:
image: gcc:10
test_script: make -j4 test
env:
LC_ALL: en_US.UTF-8
macos_task:
macos_instance:
image: ghcr.io/cirruslabs/macos-ventura-base:latest
matrix:
- name: macos_clang
clang_script: brew install llvm@11
env:
CXX: /usr/local/opt/llvm@11/bin/clang++
- name: macos_gcc
gcc_script:
- /usr/sbin/softwareupdate --install-rosetta --agree-to-license
- arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
- arch -x86_64 /usr/local/bin/brew install gcc@10
env:
CXX: g++-10
test_script: make -j4 test