-
Notifications
You must be signed in to change notification settings - Fork 1.4k
AD CI #9570
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
base: develop
Are you sure you want to change the base?
AD CI #9570
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| name: Android CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ "develop" ] | ||
| pull_request: | ||
| branches: [ "develop" ] | ||
|
|
||
| jobs: | ||
| build: | ||
|
|
||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: set up JDK 11 | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: '11' | ||
| distribution: 'temurin' | ||
| cache: gradle | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. CI uses wrong JDK versionHigh Severity This workflow hardcodes JDK 11, but the project expects JDK 21 via Please tell me if this was useful or not with a 👍 or 👎. Reviewed by Cursor Bugbot for commit 575360e. Configure here. |
||
|
|
||
| - name: Grant execute permission for gradlew | ||
| run: chmod +x gradlew | ||
| - name: Build with Gradle | ||
| run: ./gradlew build | ||


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.
Checkout omits required submodules
High Severity
actions/checkout@v4runs withoutsubmodules: recursive. Native sources underbloom_cpp(used byhttpsupgrade-impl) live in a git submodule, so a full./gradlew buildwill fail when compiling that module. Existing Gradle workflows always check out submodules recursively.Please tell me if this was useful or not with a 👍 or 👎.
Reviewed by Cursor Bugbot for commit 575360e. Configure here.