Unverified Commit 01aa295a authored by Nikita Titov's avatar Nikita Titov Committed by GitHub
Browse files

[ci] Use the latest gcc version in macOS CI jobs (#4640)

* Use the latest gcc version in macOS CI jobs

* test: swap compilers

* Revert "test: swap compilers"

* Revert "test: swap compilers"
parent f3037c18
#!/bin/bash
if [[ $OS_NAME == "macos" ]] && [[ $COMPILER == "gcc" ]]; then
export CXX=g++-10
export CC=gcc-10
export CXX=g++-11
export CC=gcc-11
elif [[ $OS_NAME == "linux" ]] && [[ $COMPILER == "clang" ]]; then
export CXX=clang++
export CC=clang
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment