-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from wiredashio/nnbd
- Loading branch information
Showing
74 changed files
with
743 additions
and
1,263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
name: Nightly | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Every night at 03:00 | ||
- cron: '0 3 * * *' | ||
|
@@ -28,8 +29,8 @@ jobs: | |
image: cirrusci/flutter:beta | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
ref: beta | ||
with: | ||
ref: beta | ||
- name: Download dependencies | ||
run: sudo --preserve-env=PATH env flutter packages get | ||
- name: Analyze | ||
|
@@ -43,8 +44,8 @@ jobs: | |
image: cirrusci/flutter:dev | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
ref: dev | ||
with: | ||
ref: dev | ||
- name: Download dependencies | ||
run: sudo --preserve-env=PATH env flutter packages get | ||
- name: Analyze | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,24 +4,71 @@ on: | |
pull_request: | ||
push: | ||
branches: | ||
- master | ||
- stable | ||
- beta | ||
- dev | ||
|
||
jobs: | ||
build: | ||
pr-stable: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: ["stable", "beta", "dev", "master"] | ||
container: | ||
image: cirrusci/flutter:${{ matrix.version }} | ||
image: cirrusci/flutter:stable | ||
if: github.base_ref == 'stable' || github.ref == 'refs/heads/stable' | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Download dependencies | ||
run: sudo --preserve-env=PATH env flutter packages get | ||
- name: Check formatting | ||
run: sudo --preserve-env=PATH env dartfmt --dry-run --set-exit-if-changed lib | ||
- name: Analyze | ||
run: sudo --preserve-env=PATH env dartanalyzer --fatal-infos --fatal-warnings lib | ||
- name: Test | ||
run: sudo --preserve-env=PATH env flutter test --no-sound-null-safety | ||
- uses: actions/[email protected] | ||
- name: Download dependencies | ||
run: sudo --preserve-env=PATH env flutter packages get | ||
- name: Check formatting | ||
run: sudo --preserve-env=PATH env dartfmt --dry-run --set-exit-if-changed lib | ||
- name: Analyze | ||
run: sudo --preserve-env=PATH env dartanalyzer --fatal-infos --fatal-warnings lib | ||
- name: Test | ||
run: sudo --preserve-env=PATH env flutter test --no-sound-null-safety | ||
|
||
pr-beta: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: cirrusci/flutter:beta | ||
if: github.base_ref == 'beta' || github.ref == 'refs/heads/beta' | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Download dependencies | ||
run: sudo --preserve-env=PATH env flutter packages get | ||
- name: Check formatting | ||
run: sudo --preserve-env=PATH env dartfmt --dry-run --set-exit-if-changed lib | ||
- name: Analyze | ||
run: sudo --preserve-env=PATH env flutter analyze --fatal-infos --fatal-warnings lib | ||
- name: Test | ||
run: sudo --preserve-env=PATH env flutter test --no-sound-null-safety | ||
|
||
pr-dev: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: cirrusci/flutter:dev | ||
if: github.base_ref == 'dev' || github.ref == 'refs/heads/dev' | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Download dependencies | ||
run: sudo --preserve-env=PATH env flutter packages get | ||
- name: Check formatting | ||
run: sudo --preserve-env=PATH env dartfmt --dry-run --set-exit-if-changed lib | ||
- name: Analyze | ||
run: sudo --preserve-env=PATH env flutter analyze --fatal-infos --fatal-warnings lib | ||
- name: Test | ||
run: sudo --preserve-env=PATH env flutter test --no-sound-null-safety | ||
|
||
pr-master: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: cirrusci/flutter:master | ||
if: github.base_ref == 'dev' || github.ref == 'refs/heads/dev' | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Download dependencies | ||
run: flutter packages get | ||
- name: Check formatting | ||
run: dartfmt --dry-run --set-exit-if-changed lib | ||
- name: Analyze | ||
run: flutter analyze --fatal-infos --fatal-warnings lib | ||
- name: Test | ||
run: flutter test --no-sound-null-safety |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,4 @@ SPEC CHECKSUMS: | |
|
||
PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c | ||
|
||
COCOAPODS: 1.10.0 | ||
COCOAPODS: 1.10.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" | ||
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" | ||
#include "ephemeral/Flutter-Generated.xcconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" | ||
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" | ||
#include "ephemeral/Flutter-Generated.xcconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,28 @@ | ||
PODS: | ||
- FlutterMacOS (1.0.0) | ||
- path_provider (0.0.1) | ||
- path_provider_macos (0.0.1): | ||
- FlutterMacOS | ||
- shared_preferences (0.0.1) | ||
- shared_preferences_macos (0.0.1): | ||
- FlutterMacOS | ||
- wiredash (0.0.1): | ||
- FlutterMacOS | ||
|
||
DEPENDENCIES: | ||
- FlutterMacOS (from `Flutter/ephemeral/.symlinks/flutter/darwin-x64`) | ||
- path_provider (from `Flutter/ephemeral/.symlinks/plugins/path_provider/macos`) | ||
- FlutterMacOS (from `Flutter/ephemeral`) | ||
- path_provider_macos (from `Flutter/ephemeral/.symlinks/plugins/path_provider_macos/macos`) | ||
- shared_preferences (from `Flutter/ephemeral/.symlinks/plugins/shared_preferences/macos`) | ||
- shared_preferences_macos (from `Flutter/ephemeral/.symlinks/plugins/shared_preferences_macos/macos`) | ||
- wiredash (from `Flutter/ephemeral/.symlinks/plugins/wiredash/macos`) | ||
|
||
EXTERNAL SOURCES: | ||
FlutterMacOS: | ||
:path: Flutter/ephemeral/.symlinks/flutter/darwin-x64 | ||
path_provider: | ||
:path: Flutter/ephemeral/.symlinks/plugins/path_provider/macos | ||
:path: Flutter/ephemeral | ||
path_provider_macos: | ||
:path: Flutter/ephemeral/.symlinks/plugins/path_provider_macos/macos | ||
shared_preferences: | ||
:path: Flutter/ephemeral/.symlinks/plugins/shared_preferences/macos | ||
shared_preferences_macos: | ||
:path: Flutter/ephemeral/.symlinks/plugins/shared_preferences_macos/macos | ||
wiredash: | ||
:path: Flutter/ephemeral/.symlinks/plugins/wiredash/macos | ||
|
||
SPEC CHECKSUMS: | ||
FlutterMacOS: 15bea8a44d2fa024068daa0140371c020b4b6ff9 | ||
path_provider: e0848572d1d38b9a7dd099e79cf83f5b7e2cde9f | ||
FlutterMacOS: 57701585bf7de1b3fc2bb61f6378d73bbdea8424 | ||
path_provider_macos: a0a3fd666cb7cd0448e936fb4abad4052961002b | ||
shared_preferences: 9fec34d1bd906196a4da48fcf6c3ad521cc00b8d | ||
shared_preferences_macos: 480ce071d0666e37cef23fe6c702293a3d21799e | ||
wiredash: 6716c78d9f6a953c9a2bb95105145f58e5fc955e | ||
|
||
PODFILE CHECKSUM: d8ba9b3e9e93c62c74a660b46c6fcb09f03991a7 | ||
PODFILE CHECKSUM: 6eac6b3292e5142cfc23bdeb71848a40ec51c14c | ||
|
||
COCOAPODS: 1.10.0 |
Oops, something went wrong.