Skip to content

Commit 5926d8b

Browse files
committed
build: recommend Xcode 13 or later
Change-Id: I463862ef11ad132e47e393007a449e942d293334
1 parent 6a0f2d4 commit 5926d8b

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: CI
22
on:
33
push:
4+
branches:
5+
- '**'
46
paths-ignore:
57
- 'Dockerfile'
68
- '.dockerignore'

.jenkins.d/00-deps.sh

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ esac
3434
set -x
3535

3636
if [[ $ID == macos ]]; then
37+
export HOMEBREW_NO_ENV_HINTS=1
3738
if [[ -n $GITHUB_ACTIONS ]]; then
3839
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
3940
fi

.waf-tools/default-compiler-flags.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ def configure(conf):
2727
if Utils.unversioned_sys_platform() == 'darwin':
2828
if ccver < (10, 0, 0):
2929
errmsg = ('The version of Xcode you are using is too old.\n'
30-
'The minimum supported Xcode version is 12.4.')
31-
elif ccver < (12, 0, 0):
32-
warnmsg = ('Using a version of Xcode older than 12.4 is not '
30+
'The minimum supported Xcode version is 13.0.')
31+
elif ccver < (13, 0, 0):
32+
warnmsg = ('Using a version of Xcode older than 13.0 is not '
3333
'officially supported and may result in build failures.')
3434
elif ccver < (7, 0, 0):
3535
errmsg = ('The version of clang you are using is too old.\n'

0 commit comments

Comments
 (0)