From 3d4a8ec5683cd14d5b1cefc8c18fc8c1d8ee3cef Mon Sep 17 00:00:00 2001 From: Felix Mau Date: Mon, 19 Sep 2022 21:08:02 +0200 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20::=20Use=20Xcode=2014=20on?= =?UTF-8?q?=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The snapshot tests were also generated using this Xcode version --- .github/workflows/continuous-integration.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 4b54dad..992b1c9 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -19,6 +19,14 @@ on: # https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events - cron: '0 0 * * *' +# Use latest Xcode version. +# +# Source: +# - https://www.jessesquires.com/blog/2020/01/06/selecting-an-xcode-version-on-github-ci/ +# - https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md#xcode +env: + DEVELOPER_DIR: /Applications/Xcode_14.0.app/Contents/Developer + # A workflow run is made up of one or more jobs that can run sequentially or in parallel. jobs: # This workflow starts with a job called "build-and-test".