Skip to content

Commit

Permalink
Move to 13
Browse files Browse the repository at this point in the history
  • Loading branch information
polqf committed Aug 31, 2022
1 parent bf49805 commit c2b73a0
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/smoke-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,27 +164,27 @@ jobs:
# run: echo "::set-output name=launch_id::${{env.LAUNCH_ID}}"
# if: env.LAUNCH_ID != ''

build-xcode12:
name: Build LLC + UI (Xcode 12)
runs-on: macos-10.15
build-xcode13:
name: Build LLC + UI (Xcode 13)
runs-on: macos-12
if: ${{ github.event_name != 'push' }}
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/bootstrap
- name: List Xcode
run: mdfind "kMDItemCFBundleIdentifier = 'com.apple.dt.Xcode'"
- name: Build LLC (Xcode 12)
run: bundle exec fastlane test device:"iPhone 12" build_for_testing:true
- name: Build LLC (Xcode 13)
run: bundle exec fastlane test device:"iPhone 13" build_for_testing:true
timeout-minutes: 25
env:
XCODE_VERSION: "12.4"
XCODE_VERSION: "13"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_EVENT: ${{ toJson(github.event) }}
- name: Build UI (Xcode 12)
run: bundle exec fastlane test_ui device:"iPhone 12" build_for_testing:true
- name: Build UI (Xcode 13)
run: bundle exec fastlane test_ui device:"iPhone 13" build_for_testing:true
timeout-minutes: 25
env:
XCODE_VERSION: "12.4"
XCODE_VERSION: "13"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_EVENT: ${{ toJson(github.event) }}

Expand Down

0 comments on commit c2b73a0

Please sign in to comment.