-
Notifications
You must be signed in to change notification settings - Fork 13
Modernize #461
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
takemiyamakoto
wants to merge
13
commits into
develop
Choose a base branch
from
modernize
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Modernize #461
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
11b5eef
Merge branch 'develop' into develop_to_master
arvifox 283f18c
Merge pull request #445 from sora-xor/develop_to_master
C4tWithShell 3a90457
release sora v3.8.6.0 119
arvifox 711a992
Merge pull request #446 from sora-xor/sora_3.8.6.0
arvifox 7cd0be8
release sora v3.8.6.1 120
arvifox 2a4419b
Merge pull request #447 from sora-xor/sca-217
arvifox 13bb703
release sora v3.8.6.2 121
arvifox 714c134
Merge pull request #449 from sora-xor/v.3.8.6.2
arvifox b7b0f0f
release sora v3.8.6.3 122 (#451)
arvifox f55af4d
do more testing
takemiyamakoto d5cbf92
respond to review
takemiyamakoto 0cd2ff5
get ready for prod
takemiyamakoto 6e588b1
respond to review comment
takemiyamakoto File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,69 @@ | ||
| name: Android Verification | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: [ "*" ] | ||
| push: | ||
| branches: [ "*" ] | ||
| workflow_dispatch: | ||
|
|
||
| concurrency: | ||
| group: android-verification-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| explorer-contracts: | ||
| name: Explorer Contracts | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 30 | ||
| env: | ||
| RUN_LIVE_EXPLORER_TESTS: "true" | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up JDK | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: temurin | ||
| java-version: 17 | ||
|
|
||
| - name: Set up Android SDK | ||
| uses: android-actions/setup-android@v3 | ||
|
|
||
| - name: Set up Gradle | ||
| uses: gradle/actions/setup-gradle@v4 | ||
|
|
||
| - name: Run live explorer contract tests | ||
| run: ./gradlew :feature_blockexplorer_api:testDevelopDebugUnitTest --tests '*SoraMetricsLiveContractTest' --stacktrace --no-daemon | ||
|
|
||
| blockexplorer-connected: | ||
| name: Block Explorer Connected Test | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 45 | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up JDK | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: temurin | ||
| java-version: 17 | ||
|
|
||
| - name: Set up Android SDK | ||
| uses: android-actions/setup-android@v3 | ||
|
|
||
| - name: Set up Gradle | ||
| uses: gradle/actions/setup-gradle@v4 | ||
|
|
||
| - name: Run connected block explorer test | ||
| uses: reactivecircus/android-emulator-runner@v2 | ||
| with: | ||
| api-level: 36 | ||
| target: google_apis | ||
| arch: x86_64 | ||
| profile: pixel_6 | ||
| disable-animations: true | ||
| emulator-options: -no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim -camera-back none | ||
| script: ./gradlew :feature_blockexplorer_api:connectedDevelopDebugAndroidTest --stacktrace --no-daemon | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In
.github/workflows/android_verification.yml, both thepull_requestandpushtriggers are filtered withbranches: [ "*" ], which does not mean “all branches” in GitHub Actions: the official workflow syntax docs state that*does not match/, while**does. As a result, pushes to common branch names likefeature/indexer-migrationorrelease/3.8will skip this verification workflow entirely, leaving the new live contract and connected tests unrun for those changes. See GitHub's filter pattern cheat sheet: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheetUseful? React with 👍 / 👎.