-
Notifications
You must be signed in to change notification settings - Fork 4
107 lines (97 loc) · 3.11 KB
/
ci.yaml
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
name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
analyze:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: Atsumi3/[email protected]
- uses: bluefireteam/melos-action@v2
- run: melos analyze --fatal-infos
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Atsumi3/[email protected]
- uses: bluefireteam/melos-action@v2
- run: sudo apt update
- run: sudo apt install -y lcov
- run: melos coverage
- uses: codecov/codecov-action@v3
with:
token: ${{secrets.CODECOV_TOKEN}}
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Atsumi3/[email protected]
- uses: bluefireteam/melos-action@v2
- run: melos format:exclude
linux:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-20.04]
steps:
- uses: actions/checkout@v3
- uses: Atsumi3/[email protected]
- uses: bluefireteam/melos-action@v2
- run: sudo apt update
- run: sudo apt install -y clang cmake curl libgtk-3-dev ninja-build pkg-config unzip xvfb
env:
DEBIAN_FRONTEND: noninteractive
- run: flutter build linux -v
working-directory: packages/yaru_window/example
- name: Run flutter test integration_test
run: xvfb-run -a -s '-screen 0 1024x768x24 +extension GLX' flutter test -d linux integration_test
working-directory: packages/yaru_window/example
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: Atsumi3/[email protected]
- uses: bluefireteam/melos-action@v2
- run: flutter build macos -v
working-directory: packages/yaru_window/example
- name: Run flutter test integration_test
if: ${{false}} ### TODO: timeout
run: flutter test -d macos integration_test
working-directory: packages/yaru_window/example
pub:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Atsumi3/[email protected]
- uses: bluefireteam/melos-action@v2
- run: melos exec -c 1 --no-private -- dart pub publish --dry-run
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Atsumi3/[email protected]
- uses: bluefireteam/melos-action@v2
- run: melos test
web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Atsumi3/[email protected]
- uses: bluefireteam/melos-action@v2
- run: flutter build web -v
working-directory: packages/yaru_window/example
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: Atsumi3/[email protected]
- uses: bluefireteam/melos-action@v2
- run: flutter build windows -v
working-directory: packages/yaru_window/example
- name: Run flutter test integration_test
run: flutter test -d windows integration_test
working-directory: packages/yaru_window/example