github: stop disabling configuration cache in CI

This commit is contained in:
Harsh Shandilya 2022-06-05 04:06:12 +05:30
parent 98f49e7b69
commit f53fe04196
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
8 changed files with 16 additions and 16 deletions

View file

@ -29,7 +29,7 @@ jobs:
- name: Build release binaries - name: Build release binaries
uses: gradle/gradle-build-action@v2.2.0-beta.1 uses: gradle/gradle-build-action@v2.2.0-beta.1
with: with:
arguments: --no-configuration-cache :app:assembleFreeRelease :app:assembleNonFreeRelease :app:bundleNonFreeRelease arguments: :app:assembleFreeRelease :app:assembleNonFreeRelease :app:bundleNonFreeRelease
env: env:
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} SENTRY_DSN: ${{ secrets.SENTRY_DSN }}

View file

@ -32,7 +32,7 @@ jobs:
- name: Upload binaries - name: Upload binaries
uses: gradle/gradle-build-action@v2.2.0-beta.1 uses: gradle/gradle-build-action@v2.2.0-beta.1
with: with:
arguments: --no-configuration-cache :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository arguments: :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository
env: env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }} ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }} ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }}
@ -42,7 +42,7 @@ jobs:
- name: Close and release repository - name: Close and release repository
uses: gradle/gradle-build-action@v2.2.0-beta.1 uses: gradle/gradle-build-action@v2.2.0-beta.1
with: with:
arguments: --no-configuration-cache closeAndReleaseRepository arguments: closeAndReleaseRepository
env: env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }} ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }} ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }}

View file

@ -35,7 +35,7 @@ jobs:
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
with: with:
arguments: --no-configuration-cache collectFreeReleaseApks collectNonFreeReleaseApks -PsentryUploadMappings arguments: collectFreeReleaseApks collectNonFreeReleaseApks -PsentryUploadMappings
- name: Clean secrets - name: Clean secrets
run: scripts/signing-cleanup.sh run: scripts/signing-cleanup.sh

View file

@ -69,9 +69,9 @@ jobs:
# that the version number is already correct, and we only need to drop the # that the version number is already correct, and we only need to drop the
# -SNAPSHOT suffix. # -SNAPSHOT suffix.
if [[ "${CHECKOUT_REF}" == "develop" ]]; then if [[ "${CHECKOUT_REF}" == "develop" ]]; then
./gradlew --no-configuration-cache --no-daemon clearPreRelease ./gradlew --no-daemon clearPreRelease
else else
./gradlew --no-configuration-cache --no-daemon bumpPatch ./gradlew --no-daemon bumpPatch
fi fi
# Commit changes to the versioning # Commit changes to the versioning

View file

@ -42,7 +42,7 @@ jobs:
if: "${{ steps.service-changed.outputs.result == 'true' }}" if: "${{ steps.service-changed.outputs.result == 'true' }}"
uses: gradle/gradle-build-action@v2.2.0-beta.1 uses: gradle/gradle-build-action@v2.2.0-beta.1
with: with:
arguments: --no-configuration-cache spotlessCheck arguments: spotlessCheck
unit-tests: unit-tests:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -76,7 +76,7 @@ jobs:
if: "${{ steps.service-changed.outputs.result == 'true' }}" if: "${{ steps.service-changed.outputs.result == 'true' }}"
uses: gradle/gradle-build-action@v2.2.0-beta.1 uses: gradle/gradle-build-action@v2.2.0-beta.1
with: with:
arguments: --no-configuration-cache test -PslimTests arguments: test -PslimTests
- name: (Fail-only) Upload test report - name: (Fail-only) Upload test report
if: "${{ failure() }}" if: "${{ failure() }}"
@ -117,7 +117,7 @@ jobs:
if: "${{ steps.service-changed.outputs.result == 'true' }}" if: "${{ steps.service-changed.outputs.result == 'true' }}"
uses: gradle/gradle-build-action@v2.2.0-beta.1 uses: gradle/gradle-build-action@v2.2.0-beta.1
with: with:
arguments: --no-configuration-cache assembleFreeDebug assembleNonFreeDebug arguments: assembleFreeDebug assembleNonFreeDebug
check-api: check-api:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -151,7 +151,7 @@ jobs:
if: "${{ steps.service-changed.outputs.result == 'true' }}" if: "${{ steps.service-changed.outputs.result == 'true' }}"
uses: gradle/gradle-build-action@v2.2.0-beta.1 uses: gradle/gradle-build-action@v2.2.0-beta.1
with: with:
arguments: --no-configuration-cache apiCheck arguments: apiCheck
lint-debug: lint-debug:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -185,7 +185,7 @@ jobs:
if: "${{ steps.service-changed.outputs.result == 'true' }}" if: "${{ steps.service-changed.outputs.result == 'true' }}"
uses: gradle/gradle-build-action@v2.2.0-beta.1 uses: gradle/gradle-build-action@v2.2.0-beta.1
with: with:
arguments: --no-configuration-cache lintDebug arguments: lintDebug
assemble-release-apks: assemble-release-apks:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -219,4 +219,4 @@ jobs:
if: "${{ steps.service-changed.outputs.result == 'true' }}" if: "${{ steps.service-changed.outputs.result == 'true' }}"
uses: gradle/gradle-build-action@v2.2.0-beta.1 uses: gradle/gradle-build-action@v2.2.0-beta.1
with: with:
arguments: --no-configuration-cache aNFR arguments: aNFR

View file

@ -44,4 +44,4 @@ jobs:
env: env:
GRADLE_VERSION_OVERRIDE_com_android_tools_build_gradle: ${{ matrix.agp-version }} GRADLE_VERSION_OVERRIDE_com_android_tools_build_gradle: ${{ matrix.agp-version }}
with: with:
arguments: --no-configuration-cache check arguments: check

View file

@ -20,7 +20,7 @@ jobs:
- name: Download new translations from Crowdin - name: Download new translations from Crowdin
uses: gradle/gradle-build-action@v2.2.0-beta.1 uses: gradle/gradle-build-action@v2.2.0-beta.1
with: with:
arguments: --no-configuration-cache crowdin arguments: crowdin
env: env:
CROWDIN_LOGIN: ${{ secrets.CROWDIN_LOGIN }} CROWDIN_LOGIN: ${{ secrets.CROWDIN_LOGIN }}
CROWDIN_PROJECT_KEY: ${{ secrets.CROWDIN_PROJECT_KEY }} CROWDIN_PROJECT_KEY: ${{ secrets.CROWDIN_PROJECT_KEY }}

View file

@ -20,7 +20,7 @@ jobs:
- name: Download new publicsuffix data - name: Download new publicsuffix data
uses: gradle/gradle-build-action@v2.2.0-beta.1 uses: gradle/gradle-build-action@v2.2.0-beta.1
with: with:
arguments: --no-configuration-cache updatePSL arguments: updatePSL
- name: Compare list changes - name: Compare list changes
run: if [[ $(git diff --binary --stat) != "" ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi run: if [[ $(git diff --binary --stat) != "" ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi
@ -29,7 +29,7 @@ jobs:
uses: gradle/gradle-build-action@v2.2.0-beta.1 uses: gradle/gradle-build-action@v2.2.0-beta.1
if: "${{ env.UPDATED == 'true' }}" if: "${{ env.UPDATED == 'true' }}"
with: with:
arguments: --no-configuration-cache :autofill-parser:test -PslimTests arguments: :autofill-parser:test -PslimTests
- name: Create Pull Request - name: Create Pull Request
id: cpr id: cpr