Skip to content
Merged
Show file tree
Hide file tree
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
28 changes: 28 additions & 0 deletions .ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ platform_properties:
linux:
properties:
os: Linux
linux_web:
properties:
dependencies: >-
[
{"dependency": "chrome_and_driver", "version": "version:114.0"}
]
os: Ubuntu
cores: "8"
device_type: none
windows:
properties:
dependencies: >
Expand Down Expand Up @@ -58,6 +67,25 @@ targets:
channel: master
version_file: flutter_master.version

### Web tasks ###
- name: Linux_web web_build_all_packages master
bringup: true # New target
recipe: packages/packages
timeout: 30
properties:
version_file: flutter_master.version
target_file: web_build_all_packages.yaml
channel: master

- name: Linux_web web_build_all_packages stable
bringup: true # New target
recipe: packages/packages
timeout: 30
properties:
version_file: flutter_stable.version
target_file: web_build_all_packages.yaml
channel: stable

### iOS+macOS tasks ###
# TODO(stuartmorgan): Move this to ARM once google_maps_flutter has ARM
# support. `pod lint` makes a synthetic target that doesn't respect the
Expand Down
10 changes: 10 additions & 0 deletions .ci/targets/web_build_all_packages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
tasks:
- name: prepare tool
script: .ci/scripts/prepare_tool.sh
- name: create all_packages app
script: .ci/scripts/create_all_packages_app.sh
# No debug version, unlike the other platforms, since web does not support
# debug builds.
- name: build all_packages app for Web release
script: .ci/scripts/build_all_packages_app.sh
args: ["web", "release"]