Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Run ios-custom_package_tests on x64
  • Loading branch information
jmagman committed Aug 19, 2022
commit 539660faaffe5bc109715cb055e0053e9ab96a06
14 changes: 12 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,14 @@ macos_template: &MACOS_TEMPLATE
# Only one macOS task can run in parallel without credits, so use them for
# PRs on macOS.
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true'
# Run tasks on Apple Silicon.

macos_intel_template: &MACOS_INTEL_TEMPLATE
<< : *MACOS_TEMPLATE
osx_instance:
image: big-sur-xcode-13

macos_arm_template: &MACOS_ARM_TEMPLATE
<< : *MACOS_TEMPLATE
macos_instance:
image: ghcr.io/cirruslabs/macos-monterey-xcode:13.4

Expand Down Expand Up @@ -232,11 +239,11 @@ task:
- ./script/tool_runner.sh native-test --linux --no-integration

task:
<< : *MACOS_TEMPLATE
<< : *FLUTTER_UPGRADE_TEMPLATE
matrix:
### iOS tasks ###
- name: ios-platform_tests
<< : *MACOS_ARM_TEMPLATE
env:
PATH: $PATH:/usr/local/bin
matrix:
Expand All @@ -250,6 +257,8 @@ task:
native_test_script:
- ./script/tool_runner.sh native-test --ios --ios-destination "platform=iOS Simulator,name=iPhone 13,OS=latest"
- name: ios-custom_package_tests
# Run on macOS x64 image with Java runtime installed.
<< : *MACOS_INTEL_TEMPLATE
env:
PATH: $PATH:/usr/local/bin
matrix:
Expand All @@ -267,6 +276,7 @@ task:
- fi
### macOS desktop tasks ###
- name: macos-platform_tests
<< : *MACOS_ARM_TEMPLATE
env:
matrix:
CHANNEL: "master"
Expand Down