-
Notifications
You must be signed in to change notification settings - Fork 277
104 lines (91 loc) · 3.31 KB
/
dart_ddc.yaml
File metadata and controls
104 lines (91 loc) · 3.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Dart (DDC)
on:
workflow_call:
inputs:
package-name:
description: The name of the package being tested
required: true
type: string
working-directory:
description: The working directory relative to the repo root
required: true
type: string
jobs:
test-dart-ddc:
# These tests heavily leverage build_runner which benefits from faster runners
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
# Allows other matrix items to run if one fails
fail-fast: false
matrix:
sdk:
# Minimum supported Dart version
- "3.8.0"
- stable
- beta
browser:
- chrome
- firefox
# Skips 'beta' tests on PRs
exclude:
- sdk: ${{ (github.event_name == 'pull_request') && 'beta' || 'NONE' }}
steps:
- name: Cache Pub dependencies
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # 4.2.4
with:
path: |
~/.pub-cache/hosted
~/.pub-cache/git
key: os:ubuntu-latest;sdk:${{ matrix.sdk }};packages:${{ inputs.working-directory }}
restore-keys: |
os:ubuntu-latest;sdk:${{ matrix.sdk }};packages:${{ inputs.working-directory }}
os:ubuntu-latest;sdk:${{ matrix.sdk }}
os:ubuntu-latest
- name: Git Checkout
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # 4.0.0
- name: Git Submodules
run: git submodule update --init
- name: Setup Dart
uses: dart-lang/setup-dart@fe21d53e1e27c70b5c8e8273d4bcc0d23c071577 # main
with:
sdk: ${{ matrix.sdk }}
- name: Setup aft
shell: bash # Run in bash regardless of platform
run: dart pub global activate -spath packages/aft
- name: Setup Firefox
if: ${{ matrix.browser == 'firefox' }}
uses: ./.github/composite_actions/setup_firefox
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Bootstrap
id: bootstrap
timeout-minutes: 20
run: aft bootstrap --fail-fast --include=${{ inputs.package-name }} --verbose
- name: Setup Package
if: "always() && steps.bootstrap.conclusion == 'success'"
shell: bash # Run in bash regardless of platform
working-directory: ${{ inputs.working-directory }}
run: |
if [ -e tool/setup.sh ]; then
./tool/setup.sh
fi
- name: Run Tests
if: "always() && steps.bootstrap.conclusion == 'success'"
run: dart run build_runner build test --delete-conflicting-outputs && dart test -p ${{ matrix.browser }}
working-directory: ${{ inputs.working-directory }}
- name: Log success/failure
if: always()
uses: ./.github/composite_actions/log_cw_metric_wrapper
with:
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
aws-region: ${{ secrets.AWS_REGION }}
job-status: ${{ job.status }}
github-token: ${{ secrets.GITHUB_TOKEN }}
test-type: unit
working-directory: ${{ inputs.working-directory }}
framework: dart
flutter-dart-channel: ${{ matrix.sdk }}
dart-compiler: ddc
platform: web
platform-version: ${{ matrix.browser }}