-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
51 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Runnable (stable) | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
test: | ||
name: Analyze on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
toolchain: stable | ||
components: rustfmt, clippy | ||
- uses: actions/setup-java@v2 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '11' | ||
- uses: subosito/flutter-action@v2 | ||
with: | ||
channel: 'stable' | ||
- run: flutter pub get | ||
- name: (Linux) Prepare requirements | ||
run: sudo apt update && sudo apt-get install -y libglu1-mesa ninja-build clang cmake pkg-config libgtk-3-dev liblzma-dev | ||
if: runner.os == 'Linux' | ||
- name: (Linux) Integration test | ||
run: cd example && flutter test -d linux integration_test/simple_test.dart | ||
if: runner.os == 'Linux' | ||
- name: (Windows) Prepare requirements | ||
uses: KyleMayes/install-llvm-action@v1 | ||
if: runner.os == 'Windows' | ||
with: | ||
version: "15" | ||
- name: (Windows) Integration test | ||
run: cd example && flutter test -d windows integration_test/simple_test.dart | ||
if: runner.os == 'Windows' | ||
- name: (macOS) Integration test | ||
run: cd example && flutter test -d macos integration_test/simple_test.dart | ||
if: runner.os == 'macOS' | ||
- name: Publish dry run | ||
run: dart pub publish --dry-run | ||
if: github.repository == 'AstroxNetwork/ord_dart' |
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,5 +1,3 @@ | ||
package example.android.app | ||
|
||
plugins { | ||
id "com.android.application" | ||
id "kotlin-android" | ||
|
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,5 +1,3 @@ | ||
package example.android | ||
|
||
pluginManagement { | ||
def flutterSdkPath = { | ||
def properties = new Properties() | ||
|