File tree Expand file tree Collapse file tree 2 files changed +11
-12
lines changed Expand file tree Collapse file tree 2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ jobs:
44
44
- macos-11
45
45
- ubuntu-22.04
46
46
sdk :
47
+ # Always include lowest supported version (see sdk key in objectbox and generator
48
+ # pubspec.yaml, but may be higher due to dependencies).
47
49
- 2.18.5
48
50
- 2.17.6
49
- - 2.16.2
50
- - 2.14.0 # currently the lowest fully supported version (i.e. generator + lib)
51
51
runs-on : ${{ matrix.os }}
52
52
steps :
53
53
- uses : dart-lang/setup-dart@v1
@@ -93,14 +93,12 @@ jobs:
93
93
os :
94
94
- macos-11
95
95
- ubuntu-22.04
96
+ - windows-2022 # Flutter 2.9 and newer need Visual Studio 2022 to build desktop.
96
97
flutter-version :
98
+ # Always include lowest supported version (based on lowest tested Dart SDK, see lib tests
99
+ # above): https://docs.flutter.dev/development/tools/sdk/releases lists included Dart SDK.
97
100
- 3.3.9
98
- - 2.5.0 # currently the lowest fully supported version (i.e. generator + lib)
99
- include :
100
- - flutter-version : 3.3.9 # Flutter 2.9 and newer need Visual Studio 2022 to build desktop.
101
- os : windows-2022
102
- - flutter-version : 2.5.0 # Flutter 2.8.1 and older need Visual Studio 2019 to build desktop.
103
- os : windows-2019
101
+ - 3.0.5
104
102
runs-on : ${{ matrix.os }}
105
103
steps :
106
104
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -65,7 +65,8 @@ test-lib:linux:x64:
65
65
needs : ["test-generator:linux:x64"] # Wait for generator test
66
66
parallel :
67
67
matrix :
68
- # Note: use specific tags as docker images may not always be pulled due to "if-not-present" pull policy.
69
- # Thus, do not use tags like latest/beta, but check https://hub.docker.com/_/dart?tab=tags for latest.
70
- # Always include lowest supported version (see sdk key in objectbox and generator pubspec.yaml).
71
- - DART_VERSION : [ '2.14', '2.16.2', '2.17.6', '2.18.5' ]
68
+ # Note: use specific versions instead of latest/beta tags as Docker images may not always be
69
+ # pulled due to "if-not-present" pull policy. Check https://hub.docker.com/_/dart?tab=tags.
70
+ # Always include lowest supported version (see sdk key in objectbox and generator
71
+ # pubspec.yaml, but may be higher due to dependencies).
72
+ - DART_VERSION : [ '2.17.6', '2.18.5' ]
You can’t perform that action at this time.
0 commit comments