-
Notifications
You must be signed in to change notification settings - Fork 1
172 lines (144 loc) · 5.29 KB
/
ci.yml
File metadata and controls
172 lines (144 loc) · 5.29 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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
name: CI
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
test:
name: Test ${{ matrix.package.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
package:
- name: gameframework
path: packages/gameframework
- name: gameframework_unity
path: engines/unity/dart
- name: gameframework_unreal
path: engines/unreal/dart
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.27.x'
channel: 'stable'
cache: true
- name: Get dependencies
working-directory: ${{ matrix.package.path }}
run: flutter pub get
- name: Analyze code
working-directory: ${{ matrix.package.path }}
run: flutter analyze
- name: Check formatting
working-directory: ${{ matrix.package.path }}
run: dart format --set-exit-if-changed .
- name: Run tests
working-directory: ${{ matrix.package.path }}
run: flutter test --coverage
- name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v3
with:
files: ${{ matrix.package.path }}/coverage/lcov.info
flags: ${{ matrix.package.name }}
name: ${{ matrix.package.name }}-coverage
test-web:
name: Web Tests (gameframework_unity)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.27.x'
channel: 'stable'
cache: true
- name: Get dependencies
working-directory: engines/unity/dart
run: flutter pub get
- name: Run web tests (Chrome)
working-directory: engines/unity/dart
run: flutter test --platform chrome test/unity_controller_web_test.dart
test-macos:
name: macOS Tests (gameframework_unity)
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.27.x'
channel: 'stable'
cache: true
- name: Get dependencies
working-directory: engines/unity/dart
run: flutter pub get
- name: Analyze macOS code
working-directory: engines/unity/dart
run: flutter analyze
- name: Run Dart tests on macOS
working-directory: engines/unity/dart
run: flutter test --coverage
validate-publish:
name: Validate pub.dev requirements
runs-on: ubuntu-latest
strategy:
matrix:
package:
- name: gameframework
path: packages/gameframework
- name: gameframework_unity
path: engines/unity/dart
- name: gameframework_unreal
path: engines/unreal/dart
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.27.x'
channel: 'stable'
cache: true
- name: Get dependencies
working-directory: ${{ matrix.package.path }}
run: flutter pub get
- name: Validate package for pub.dev
working-directory: ${{ matrix.package.path }}
run: dart pub publish --dry-run
check-versions:
name: Check version consistency
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check version consistency
run: |
GAMEFRAMEWORK_VERSION=$(grep '^version:' packages/gameframework/pubspec.yaml | awk '{print $2}')
UNITY_VERSION=$(grep '^version:' engines/unity/dart/pubspec.yaml | awk '{print $2}')
UNREAL_VERSION=$(grep '^version:' engines/unreal/dart/pubspec.yaml | awk '{print $2}')
echo "gameframework: $GAMEFRAMEWORK_VERSION"
echo "gameframework_unity: $UNITY_VERSION"
echo "gameframework_unreal: $UNREAL_VERSION"
# Check if Unity and Unreal depend on the correct gameframework version
UNITY_GAMEFRAMEWORK_DEP=$(grep 'gameframework:' engines/unity/dart/pubspec.yaml | awk '{print $2}')
UNREAL_GAMEFRAMEWORK_DEP=$(grep 'gameframework:' engines/unreal/dart/pubspec.yaml | awk '{print $2}')
echo "Unity depends on gameframework: $UNITY_GAMEFRAMEWORK_DEP"
echo "Unreal depends on gameframework: $UNREAL_GAMEFRAMEWORK_DEP"
if [[ "$UNITY_GAMEFRAMEWORK_DEP" != "$GAMEFRAMEWORK_VERSION" ]]; then
echo "⚠️ Warning: gameframework_unity depends on gameframework $UNITY_GAMEFRAMEWORK_DEP, but gameframework is at version $GAMEFRAMEWORK_VERSION"
fi
if [[ "$UNREAL_GAMEFRAMEWORK_DEP" != "$GAMEFRAMEWORK_VERSION" ]]; then
echo "⚠️ Warning: gameframework_unreal depends on gameframework $UNREAL_GAMEFRAMEWORK_DEP, but gameframework is at version $GAMEFRAMEWORK_VERSION"
fi