-
-
Notifications
You must be signed in to change notification settings - Fork 337
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 #2389 from getsentry/5.0.0
- Loading branch information
Showing
333 changed files
with
42,544 additions
and
1,181 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,8 +1,10 @@ | ||
# Ignore build generated dir | ||
dist | ||
|
||
# Ignore sample folder | ||
# Ignore standalone apps | ||
sample | ||
sample-new-architecture | ||
test/perf/TestApp* | ||
|
||
# Ignore dangerfile | ||
dangerfile.js | ||
dangerfile.js |
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,37 @@ | ||
name: Codegen | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- release/** | ||
pull_request: | ||
|
||
jobs: | ||
codegen: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
platform: ["android"] # "ios" will be added after codegen is fixed | ||
include: | ||
- platform: android | ||
command: | | ||
cd sample-new-architecture/android | ||
./gradlew generateCodegenArtifactsFromSchema | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- uses: actions/cache@v3 | ||
id: cache | ||
with: | ||
path: sample-new-architecture/node_modules | ||
key: ${{ runner.os }}-${{ github.sha }} | ||
- name: Install Dependencies | ||
if: steps.cache.outputs['cache-hit'] != 'true' | ||
run: | | ||
cd sample-new-architecture | ||
yarn install | ||
- name: Codegen | ||
run: ${{ matrix.command }} |
Oops, something went wrong.