Skip to content

Commit

Permalink
pin Xcode 11.7 as the new default 12.0.1 is broken
Browse files Browse the repository at this point in the history
Xcode has been changed to default to Xcode 12.0.1
(actions/runner-images#1712), but this
breaks the build. This change pins builds to Xcode 11.7 until it can be
fixed.
  • Loading branch information
terencehonles committed Nov 3, 2020
1 parent 3a87324 commit 1c815d0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,9 @@ jobs:
ARROW_WITH_SNAPPY: ON
ARROW_WITH_ZLIB: ON
ARROW_WITH_ZSTD: ON
# Pin Xcode to 11.7 instead of the new default of 12.0.1
# See: https://github.com/actions/virtual-environments/issues/1712
DEVELOPER_DIR: /Applications/Xcode_11.7.app/Contents/Developer
steps:
- name: Checkout Arrow
uses: actions/checkout@v2
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ jobs:
ARROW_WITH_BROTLI: ON
ARROW_BUILD_TESTS: OFF
CMAKE_ARGS: "-DPYTHON_EXECUTABLE=/usr/local/bin/python3"
# Pin Xcode to 11.7 instead of the new default of 12.0.1
# See: https://github.com/actions/virtual-environments/issues/1712
DEVELOPER_DIR: /Applications/Xcode_11.7.app/Contents/Developer
steps:
- name: Checkout Arrow
uses: actions/checkout@v2
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,9 @@ jobs:
ARROW_WITH_SNAPPY: ON
ARROW_WITH_ZLIB: ON
ARROW_WITH_ZSTD: ON
# Pin Xcode to 11.7 instead of the new default of 12.0.1
# See: https://github.com/actions/virtual-environments/issues/1712
DEVELOPER_DIR: /Applications/Xcode_11.7.app/Contents/Developer
XML_CATALOG_FILES: /usr/local/etc/xml/catalog
steps:
- name: Checkout Arrow
Expand Down

0 comments on commit 1c815d0

Please sign in to comment.