Skip to content

Commit

Permalink
ARROW-10490: [CI] pin Xcode 11.7 (the new default 12.0.1 does not build)
Browse files Browse the repository at this point in the history
Xcode for GitHub actions 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 b993d56
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ jobs:
ARROW_WITH_SNAPPY: ON
ARROW_WITH_ZLIB: ON
ARROW_WITH_ZSTD: ON
# Pin Xcode to 11.7 instead of the default of 12.0.1
DEVELOPER_DIR: /Applications/Xcode_11.7.app/Contents/Developer
steps:
- name: Checkout Arrow
uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ 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 default of 12.0.1
DEVELOPER_DIR: /Applications/Xcode_11.7.app/Contents/Developer
steps:
- name: Checkout Arrow
uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ jobs:
ARROW_WITH_SNAPPY: ON
ARROW_WITH_ZLIB: ON
ARROW_WITH_ZSTD: ON
# Pin Xcode to 11.7 instead of the default of 12.0.1
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 b993d56

Please sign in to comment.