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

[ci] bump gcc version for macOS (#3208)

* update gcc version

* Update setup.sh

* fix GitHub Actions
parent 4f8c32d9
...@@ -9,6 +9,12 @@ if [[ $OS_NAME == "macos" ]]; then ...@@ -9,6 +9,12 @@ if [[ $OS_NAME == "macos" ]]; then
else # gcc else # gcc
if [[ $TASK != "mpi" ]]; then if [[ $TASK != "mpi" ]]; then
brew install gcc brew install gcc
if [[ $GITHUB_ACTIONS == "true" ]]; then
brew update
fi
if [[ $TRAVIS == "true" ]] || [[ $GITHUB_ACTIONS == "true" ]]; then
brew upgrade gcc
fi
fi fi
fi fi
if [[ $TASK == "mpi" ]]; then if [[ $TASK == "mpi" ]]; then
......
#!/bin/bash #!/bin/bash
if [[ $OS_NAME == "macos" ]] && [[ $COMPILER == "gcc" ]]; then if [[ $OS_NAME == "macos" ]] && [[ $COMPILER == "gcc" ]]; then
export CXX=g++-9 export CXX=g++-10
export CC=gcc-9 export CC=gcc-10
elif [[ $OS_NAME == "linux" ]] && [[ $COMPILER == "clang" ]]; then elif [[ $OS_NAME == "linux" ]] && [[ $COMPILER == "clang" ]]; then
export CXX=clang++ export CXX=clang++
export CC=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