From 6a3553cab55b50311232a1ed9abb8642aa2ae7a8 Mon Sep 17 00:00:00 2001 From: Lukasz Piatkowski Date: Thu, 18 Jun 2020 13:27:29 -0700 Subject: [PATCH] Github Actions: fix MacOS builds - use old XCode version (#22) Summary: Boost 1.69 doesn't build with XCode >=11.0 according to https://trac.macports.org/ticket/60287 Downgrading XCode to old version seems to fix this (Selecting done as described in https://www.jessesquires.com/blog/2020/01/06/selecting-an-xcode-version-on-github-ci/) Pull Request resolved: https://github.com/facebookexperimental/eden/pull/22 Reviewed By: farnz Differential Revision: D22118747 Pulled By: lukaspiatkowski fbshipit-source-id: 31acc6298cdcf7c5a75a8be38d6dd0deb90c5bd2 --- .github/workflows/mononoke.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/mononoke.yml b/.github/workflows/mononoke.yml index d3613fba7a223..9d6cb520333de 100644 --- a/.github/workflows/mononoke.yml +++ b/.github/workflows/mononoke.yml @@ -51,6 +51,8 @@ jobs: continue-on-error: true mac: runs-on: macOS-latest + env: + DEVELOPER_DIR: /Applications/Xcode_10.3.app/Contents/Developer steps: - uses: actions/checkout@v1 - name: Install Rust Stable