-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding channel param to install sdk (#49)
rename to release channel change version to channel change string to enum for channel add integration test for channel remove typo update comment remove local formatting changes Update executor Update machine executor version Co-authored-by: Alex Fernandez <[email protected]>
- Loading branch information
1 parent
d163a37
commit 7d9e1a2
Showing
7 changed files
with
48 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ version: 2.1 | |
orbs: | ||
flutter: circleci/flutter@dev:<<pipeline.git.revision>> | ||
orb-tools: circleci/[email protected] | ||
android: circleci/android@2.1.2 | ||
android: circleci/android@3.0.1 | ||
filters: &filters | ||
tags: | ||
only: /.*/ | ||
|
@@ -19,13 +19,30 @@ jobs: | |
app-dir: ./sample | ||
- flutter/install_ios_gem: | ||
app-dir: ./sample | ||
- run: | ||
- run: | ||
name: 'check that the sdk is installed properly' | ||
command: cd sample && flutter doctor && rbenv version | ||
integration-test-channel-beta: | ||
macos: | ||
xcode: 14.2.0 | ||
resource_class: macos.m1.large.gen1 | ||
steps: | ||
- checkout | ||
- flutter/install_sdk_and_pub: | ||
app-dir: ./sample | ||
channel: beta | ||
version: 3.27.0-0.1.pre | ||
- flutter/install_ios_pod: | ||
app-dir: ./sample | ||
- flutter/install_ios_gem: | ||
app-dir: ./sample | ||
- run: | ||
name: 'check that the sdk is installed properly from the beta channel' | ||
command: cd sample && flutter doctor && rbenv version | ||
integration-test-linux: | ||
executor: | ||
name: android/android-machine | ||
tag: '2022.09.1' | ||
name: android/android_machine | ||
tag: '2022.12.1' | ||
steps: | ||
- checkout | ||
- flutter/install_sdk_and_pub: | ||
|
@@ -35,7 +52,7 @@ jobs: | |
app-dir: ./sample | ||
- flutter/install_android_gem: | ||
app-dir: ./sample | ||
- run: | ||
- run: | ||
name: 'check that the sdk is installed properly' | ||
command: cd sample && flutter doctor && rvm version | ||
workflows: | ||
|
@@ -44,6 +61,8 @@ workflows: | |
# Make sure to include "filters: *filters" in every test job you want to run as part of your deployment. | ||
- integration-test-macos: | ||
filters: *filters | ||
- integration-test-channel-beta: | ||
filters: *filters | ||
- integration-test-linux: | ||
filters: *filters | ||
- flutter/unit_test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters