Skip to content

Commit

Permalink
Remove compiler pins on osx CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluescarni committed Sep 28, 2024
1 parent b4727e1 commit b141278
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tools/gha_osx_arm64_static.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge
export deps_dir=$HOME/local
export PATH="$HOME/miniconda/bin:$PATH"
bash miniconda.sh -b -p $HOME/miniconda
conda create -y -p $deps_dir 'c-compiler<1.8' zlib 'cxx-compiler<1.8' libcxx cmake ninja \
conda create -y -p $deps_dir c-compiler zlib cxx-compiler libcxx cmake ninja \
llvmdev tbb-devel tbb libboost-devel sleef xtensor xtensor-blas blas \
blas-devel fmt spdlog 'mppp=1.*'
source activate $deps_dir
Expand Down
4 changes: 2 additions & 2 deletions tools/gha_osx_x86.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge
export deps_dir=$HOME/local
export PATH="$HOME/miniconda/bin:$PATH"
bash miniconda.sh -b -p $HOME/miniconda
conda create -y -p $deps_dir 'c-compiler<1.8' zlib 'cxx-compiler<1.8' libcxx cmake ninja \
conda create -y -p $deps_dir c-compiler zlib cxx-compiler libcxx cmake ninja \
llvmdev tbb-devel tbb libboost-devel sleef xtensor xtensor-blas blas \
blas-devel fmt spdlog 'mppp=1.*'
source activate $deps_dir
Expand All @@ -25,7 +25,7 @@ unset CXXFLAGS
unset CFLAGS

# Configure.
CXX=clang++ CC=clang cmake ../ -G Ninja \
CXX=clang++ CC=clang cmake -G Ninja ../ \
-DCMAKE_PREFIX_PATH=$deps_dir \
-DCMAKE_BUILD_TYPE=Debug \
-DHEYOKA_BUILD_TESTS=yes \
Expand Down
2 changes: 1 addition & 1 deletion tools/gha_osx_x86_static.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge
export deps_dir=$HOME/local
export PATH="$HOME/miniconda/bin:$PATH"
bash miniconda.sh -b -p $HOME/miniconda
conda create -y -p $deps_dir 'c-compiler<1.8' zlib 'cxx-compiler<1.8' libcxx cmake ninja \
conda create -y -p $deps_dir c-compiler zlib cxx-compiler libcxx cmake ninja \
llvmdev tbb-devel tbb libboost-devel sleef xtensor xtensor-blas blas \
blas-devel fmt spdlog 'mppp=1.*'
source activate $deps_dir
Expand Down

0 comments on commit b141278

Please sign in to comment.