Added the jigsaw loader. #18
Workflow file for this run
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
name: Gradle checks | |
env: | |
cache-name: android-gradle | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
setup: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Cache build artifacts | |
uses: ./.github/actions/cache-build-paths | |
with: | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Assemble with Gradle | |
run: ./gradlew :app:preDebugBuild :app:preReleaseBuild :gears:preDebugBuild :gears:preReleaseBuild --no-daemon | |
unit-tests: | |
needs: setup | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Cache build artifacts | |
uses: ./.github/actions/cache-build-paths | |
with: | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Assemble | |
run: ./gradlew gears:assemble | |
- name: Publish to local maven | |
run: ./gradlew :gears:publishToMavenLocal | |
- name: Run unit tests | |
run: ./gradlew test | |
lint: | |
needs: setup | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Cache build artifacts | |
uses: ./.github/actions/cache-build-paths | |
with: | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }} | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Assemble | |
run: ./gradlew :app:assemble :gears:assemble | |
- name: Publish to local maven | |
run: ./gradlew :gears:publishToMavenLocal | |
- name: Run lint | |
run: ./gradlew lint --no-daemon |