Skip to content

Commit

Permalink
[jenkins] Bump up the MACOSX_DEPLOYMENT_TARGET
Browse files Browse the repository at this point in the history
LLVM Project switched to C++17. Bumping up the deployment target fixes
errors regarding usage of features which are available only in the newer
versions of macOS.
  • Loading branch information
Azharuddin Mohammed committed Aug 16, 2022
1 parent b7b9f15 commit 57d34a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion zorg/jenkins/jobs/jobs/clang-san-iossim
Expand Up @@ -36,7 +36,7 @@ pipeline {
export PATH=$PATH:/usr/bin:/usr/local/bin

# Set a MacOS minimum deployment target
export MACOSX_DEPLOYMENT_TARGET=10.9
export MACOSX_DEPLOYMENT_TARGET=10.14

rm -rf clang-install *.tar.gz
python llvm-zorg/zorg/jenkins/monorepo_build.py cmake build \
Expand Down
2 changes: 1 addition & 1 deletion zorg/jenkins/jobs/jobs/clang-stage1-RA
Expand Up @@ -44,7 +44,7 @@ pipeline {
export PATH=$PATH:/usr/bin:/usr/local/bin

# Set a MacOS minimum deployment target
export MACOSX_DEPLOYMENT_TARGET=10.9
export MACOSX_DEPLOYMENT_TARGET=10.14

rm -rf clang-build clang-install *.tar.gz
python llvm-zorg/zorg/jenkins/monorepo_build.py cmake build \
Expand Down
2 changes: 1 addition & 1 deletion zorg/jenkins/jobs/jobs/clang-stage1-cmake-RA-incremental
Expand Up @@ -41,7 +41,7 @@ pipeline {
export PATH=$PATH:/usr/bin:/usr/local/bin

# Set a MacOS minimum deployment target
export MACOSX_DEPLOYMENT_TARGET=10.9
export MACOSX_DEPLOYMENT_TARGET=10.14

python llvm-zorg/zorg/jenkins/monorepo_build.py cmake build --assertions --projects="clang"

Expand Down

0 comments on commit 57d34a9

Please sign in to comment.