-
Notifications
You must be signed in to change notification settings - Fork 37
109 lines (96 loc) · 2.48 KB
/
dart.yml
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
105
106
107
108
109
# Tests for general `setup-dart` configurations.
name: Dart
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 0 * * 0" # Run every Sunday at 00:00.
jobs:
# Default test configurations.
test:
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: example
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
sdk: [2.12.4, stable, beta, dev]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: ./
with:
sdk: ${{ matrix.sdk }}
- name: Print DART_HOME
run: echo "Dart SDK installed in $DART_HOME"
- run: dart pub get
- run: dart run bin/main.dart
- run: dart analyze
- run: dart test
# Test the raw SDK flavor.
test_raw:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
sdk: [dev, main]
flavor: [raw]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: ./
with:
sdk: ${{ matrix.sdk }}
- name: Run hello world
run: |
echo "main() { print('hello world'); }" > hello.dart
dart hello.dart
# Test the architecture input parameter.
test_arch:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ./
with:
architecture: ia32
- name: Run hello world
run: |
echo "main() { print('hello world'); }" > hello.dart
dart hello.dart
# Test inferring the channel from the sdk parameter.
test_inferred_channels:
runs-on: ubuntu-latest
strategy:
matrix:
sdk: [2.12.0-29.10.beta]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: ./
with:
sdk: ${{ matrix.sdk }}
- name: Run hello world
run: |
echo "main() { print('hello world'); }" > hello.dart
dart hello.dart
- run: dart --version
# Test getting the latest patch release for a major.minor sdk parameter.
test_latest_patch_release:
runs-on: ubuntu-latest
strategy:
matrix:
sdk: [2.19, 3.0, 3.1]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: ./
with:
sdk: ${{ matrix.sdk }}
- name: Run hello world
run: |
echo "main() { print('hello world'); }" > hello.dart
dart hello.dart
- run: dart --version