Skip to content

Build(deps): Bump com.github.spotbugs.snom:spotbugs-gradle-plugin from 5.1.2 to 5.1.3 #4349

Build(deps): Bump com.github.spotbugs.snom:spotbugs-gradle-plugin from 5.1.2 to 5.1.3

Build(deps): Bump com.github.spotbugs.snom:spotbugs-gradle-plugin from 5.1.2 to 5.1.3 #4349

Workflow file for this run

name: "Assemble"
on:
pull_request:
branches: [ master, stable-* ]
# Declare default permissions as read only.
permissions: read-all
concurrency:
group: assemble-flavors-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
flavor:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
flavor: [ Generic, Gplay, Huawei ]
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: set up JDK 17
uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 # v3
with:
distribution: "temurin"
java-version: 17
- name: Build ${{ matrix.flavor }}
run: |
echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" >> gradle.properties
./gradlew assemble${{ matrix.flavor }}