-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/upload-only-known-debug-paths
- Loading branch information
Showing
90 changed files
with
333 additions
and
1,775 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
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,53 @@ | ||
name: integration-tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- release/** | ||
pull_request: | ||
|
||
jobs: | ||
integration-test: | ||
name: ${{ matrix.target }} @ ${{ matrix.host }} | ||
runs-on: ${{ matrix.host }}-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- host: macos | ||
target: macos | ||
- host: macos | ||
target: ios | ||
- host: ubuntu | ||
target: linux | ||
- host: ubuntu | ||
target: web | ||
- host: ubuntu | ||
target: android | ||
- host: windows | ||
target: windows | ||
env: | ||
TEST_PLATFORM: ${{ matrix.target }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 #2.16.0 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
|
||
- run: sudo apt-get install ninja-build libgtk-3-dev | ||
if: runner.os == 'Linux' | ||
|
||
- run: (flutter --version)[0] | Out-File flutter.version | ||
shell: pwsh | ||
|
||
- uses: actions/cache@v4 | ||
with: | ||
path: temp/testapp-${{ matrix.target }} | ||
key: integration-test-${{ matrix.host }}-${{ matrix.target }}-${{ hashFiles('flutter.version') }} | ||
|
||
- run: dart test --tags integration |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -23,18 +23,10 @@ The `flutter build apk`, `flutter build ios` (or _macos_) or `flutter build web` | |
|
||
## Run | ||
|
||
### Dart | ||
|
||
```bash | ||
dart run sentry_dart_plugin | ||
``` | ||
|
||
### Flutter | ||
|
||
```bash | ||
flutter packages pub run sentry_dart_plugin | ||
``` | ||
|
||
## Configuration (Optional) | ||
|
||
This tool comes with a default configuration. You can configure it to suit your needs. | ||
|
@@ -71,7 +63,7 @@ in the format `--sentry-define=<KEY>=<VALUE>`. They take precedence over your fi | |
but not over the alternative environment variables. | ||
|
||
```bash | ||
flutter packages pub run sentry_dart_plugin [email protected] | ||
dart run sentry_dart_plugin [email protected] | ||
``` | ||
|
||
### sentry.properties | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.