-
-
Notifications
You must be signed in to change notification settings - Fork 643
150 lines (137 loc) · 4.88 KB
/
dart.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
name: Dart CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: 17
- name: Enable Linux for flutter
run: flutter config --enable-linux-desktop
- name: Update repo
run: sudo apt update
- name: Install utils
run: sudo apt install poppler-utils imagemagick clang cmake ninja-build pkg-config libgtk-3-dev
- name: Run analysis
run: make analyze
- name: Run tests
run: make test
- name: Run readme tests
run: make test-readme
- name: Verify that nothing changed
run: test -z "$(git status --porcelain | tee /dev/stderr)"
- name: Push to codecov
run: bash <(curl -s https://codecov.io/bash)
- name: Prepare build
run: cd printing/example; flutter create -t app --no-overwrite --org net.nfet --project-name example .
- name: Build example for Linux
run: cd printing/example; flutter build -v linux
- name: Build example for Android
run: cd printing/example; flutter build -v apk
- name: Build demo for Web
run: cd demo; flutter build -v web
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
- name: Enable Windows for flutter
run: flutter config --enable-windows-desktop
- name: Prepare build
run: cd printing/example; flutter create -t app --no-overwrite --org net.nfet --project-name example .
- name: Build example for Windows
run: cd printing/example; flutter build -v windows
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
architecture: x64
- name: Enable macOS for flutter
run: flutter config --enable-macos-desktop
- name: Prepare build
run: cd printing/example; flutter create -t app --no-overwrite --org net.nfet --project-name example .
- name: Build example for macOS
run: cd printing/example; flutter build -v macos
# - name: Build example for iOS
# run: cd printing/example; flutter build -v ios
linux-dev:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: master
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: 17
- name: Enable Linux for flutter
run: flutter config --enable-linux-desktop
- name: Update repo
run: sudo apt update
- name: Install utils
run: sudo apt install poppler-utils imagemagick clang cmake ninja-build pkg-config libgtk-3-dev
- name: Run analysis
run: make analyze
- name: Run tests
run: make test
- name: Run readme tests
run: make test-readme
- name: Verify that nothing changed
run: test -z "$(git status --porcelain | tee /dev/stderr)"
- name: Push to codecov
run: bash <(curl -s https://codecov.io/bash)
- name: Prepare build
run: cd printing/example; flutter create -t app --no-overwrite --org net.nfet --project-name example .
- name: Build example for Linux
run: cd printing/example; flutter build -v linux
- name: Build example for Android
run: cd printing/example; flutter build -v apk
- name: Build demo for Web
run: cd demo; flutter build -v web
windows-dev:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: master
- name: Enable Windows for flutter
run: flutter config --enable-windows-desktop
- name: Prepare build
run: cd printing/example; flutter create -t app --no-overwrite --org net.nfet --project-name example .
- name: Build example for Windows
run: cd printing/example; flutter build -v windows
macos-dev:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: master
architecture: x64
- name: Enable macOS for flutter
run: flutter config --enable-macos-desktop
- name: Prepare build
run: cd printing/example; flutter create -t app --no-overwrite --org net.nfet --project-name example .
- name: Build example for macOS
run: cd printing/example; flutter build -v macos
# - name: Build example for iOS
# run: cd printing/example; flutter build -v ios