From bc8c924df54197bbb058617a257bbc6e67083120 Mon Sep 17 00:00:00 2001 From: Ravi Kumar Mandala Date: Wed, 12 Jan 2022 13:01:36 -0800 Subject: [PATCH] Fix to checks on main branch and releases (#524) Signed-off-by: Ravi Mandala --- .github/workflows/master.yml | 12 ++++++------ .github/workflows/release.yml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 609f9a49..910d7fc1 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -15,8 +15,8 @@ jobs: steps: # actions/checkout@v2 but we use the SHA1 because tags can be re-written in git - uses: actions/checkout@722adc63f1aa60a57ec37892e133b1d319cae598 - - name: Select Xcode 13.0 - run: sudo xcode-select -s /Applications/Xcode_13.0.app + - name: Select Xcode 13.1 + run: sudo xcode-select -s /Applications/Xcode_13.1.app - name: Run Bluepill tests run: ./scripts/bluepill.sh instance_tests1 - name: Capture xcresult files @@ -34,8 +34,8 @@ jobs: steps: # actions/checkout@v2 but we use the SHA1 because tags can be re-written in git - uses: actions/checkout@722adc63f1aa60a57ec37892e133b1d319cae598 - - name: Select Xcode 13.0 - run: sudo xcode-select -s /Applications/Xcode_13.0.app + - name: Select Xcode 13.1 + run: sudo xcode-select -s /Applications/Xcode_13.1.app - name: Run Bluepill tests run: ./scripts/bluepill.sh instance_tests2 - name: Capture xcresult files @@ -53,8 +53,8 @@ jobs: steps: # actions/checkout@v2 but we use the SHA1 because tags can be re-written in git - uses: actions/checkout@722adc63f1aa60a57ec37892e133b1d319cae598 - - name: Select Xcode 13.0 - run: sudo xcode-select -s /Applications/Xcode_13.0.app + - name: Select Xcode 13.1 + run: sudo xcode-select -s /Applications/Xcode_13.1.app - name: Run Bluepill tests run: ./scripts/bluepill.sh runner_tests - name: Capture xcresult files diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e3369c4f..4d665082 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,8 +13,8 @@ jobs: steps: # actions/checkout@v2 but we use the SHA1 because tags can be re-written in git - uses: actions/checkout@722adc63f1aa60a57ec37892e133b1d319cae598 - - name: Select Xcode 13.0 - run: sudo xcode-select -s /Applications/Xcode_13.0.app + - name: Select Xcode 13.1 + run: sudo xcode-select -s /Applications/Xcode_13.1.app - name: Run Bluepill tests run: ./scripts/bluepill.sh instance_tests1 - name: Capture xcresult files @@ -32,8 +32,8 @@ jobs: steps: # actions/checkout@v2 but we use the SHA1 because tags can be re-written in git - uses: actions/checkout@722adc63f1aa60a57ec37892e133b1d319cae598 - - name: Select Xcode 13.0 - run: sudo xcode-select -s /Applications/Xcode_13.0.app + - name: Select Xcode 13.1 + run: sudo xcode-select -s /Applications/Xcode_13.1.app - name: Run Bluepill tests run: ./scripts/bluepill.sh instance_tests2 - name: Capture xcresult files @@ -54,8 +54,8 @@ jobs: - name: Report event trigger data run: | echo "Event ${{ github.event_name }}, ref: ${{ github.ref }}" - - name: Select Xcode 13.0 - run: sudo xcode-select -s /Applications/Xcode_13.0.app + - name: Select Xcode 13.1 + run: sudo xcode-select -s /Applications/Xcode_13.1.app - name: Run Bluepill tests run: ./scripts/bluepill.sh runner_tests - name: Capture xcresult files