From b993d5690e37e31e1720aae5a09ac2a40d1e3776 Mon Sep 17 00:00:00 2001 From: "Terence D. Honles" Date: Tue, 3 Nov 2020 13:46:33 -0800 Subject: [PATCH] ARROW-10490: [CI] pin Xcode 11.7 (the new default 12.0.1 does not build) Xcode for GitHub actions has been changed to default to Xcode 12.0.1 (https://github.com/actions/virtual-environments/issues/1712), but this breaks the build. This change pins builds to Xcode 11.7 until it can be fixed. --- .github/workflows/cpp.yml | 2 ++ .github/workflows/python.yml | 2 ++ .github/workflows/ruby.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml index 4e3e27016c1..c9492307082 100644 --- a/.github/workflows/cpp.yml +++ b/.github/workflows/cpp.yml @@ -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 diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index c0582b4ee64..0414033ecba 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -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 diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 0558ac8a2cf..6f28f857ba3 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -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