Skip to content

Commit cea0294

Browse files
committed
Updated CI
1 parent e601bb1 commit cea0294

5 files changed

Lines changed: 17 additions & 351 deletions

File tree

.github/workflows/_base-dart.yaml

Lines changed: 0 additions & 127 deletions
This file was deleted.

.github/workflows/_base-flutter.yaml

Lines changed: 0 additions & 134 deletions
This file was deleted.

.github/workflows/_base-has_flutter.yaml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/example.yaml

Lines changed: 10 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,28 @@
11
name: "example"
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
push:
67
branches:
78
- main
89
- develop
9-
- 'release/**'
10+
- "release/**"
1011
paths:
11-
- 'example/**/*.dart'
12-
- 'example/**/*.yaml'
13-
- .github/workflows/_base*.yaml
12+
- "example/**/*.dart"
13+
- "example/**/*.yaml"
1414
- .github/workflows/example.yaml
1515
release:
1616
types: [published]
1717

1818
jobs:
19-
is-flutter:
20-
uses: ./.github/workflows/_base-has_flutter.yaml
21-
with:
22-
path: '.'
23-
24-
dart:
25-
needs: is-flutter
26-
if: needs.is-flutter.outputs.is_flutter == '0'
27-
strategy:
28-
matrix:
29-
example: [ editor ]
30-
name: "${{ matrix.example }}"
31-
uses: ./.github/workflows/_base-dart.yaml
32-
with:
33-
path: "example/${{ matrix.example }}"
34-
35-
flutter:
36-
needs: is-flutter
37-
if: needs.is-flutter.outputs.is_flutter == '1'
19+
ci:
3820
strategy:
3921
matrix:
40-
example: [ editor ]
41-
name: "${{ matrix.example }}"
42-
uses: ./.github/workflows/_base-flutter.yaml
22+
include:
23+
- package: auto_layout_frame
24+
example: editor
25+
name: "${{ matrix.package }} (${{ matrix.example }})"
26+
uses: kerberjg/dart_flutter_ci_experiments/.github/workflows/pipeline.yaml@4224e695167e35d90952e21953b2f933b0f045b0
4327
with:
4428
path: "example/${{ matrix.example }}"

0 commit comments

Comments
 (0)