diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-06-05 04:06:12 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-06-05 04:06:12 +0530 |
commit | f53fe0419608f061b2518fd6d4964fc928161d19 (patch) | |
tree | f293fb9d7e8a1f435b7ba580719a1770958a173e /.github | |
parent | 98f49e7b69dad95e973260743e4579d426a17b4a (diff) |
github: stop disabling configuration cache in CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/deploy_github_releases.yml | 2 | ||||
-rw-r--r-- | .github/workflows/deploy_library_releases.yml | 4 | ||||
-rw-r--r-- | .github/workflows/deploy_snapshot.yml | 2 | ||||
-rw-r--r-- | .github/workflows/draft_new_release.yml | 4 | ||||
-rw-r--r-- | .github/workflows/pull_request.yml | 12 | ||||
-rw-r--r-- | .github/workflows/shadow_job.yml | 2 | ||||
-rw-r--r-- | .github/workflows/sync_crowdin.yml | 2 | ||||
-rw-r--r-- | .github/workflows/update_publicsuffix_data.yml | 4 |
8 files changed, 16 insertions, 16 deletions
diff --git a/.github/workflows/deploy_github_releases.yml b/.github/workflows/deploy_github_releases.yml index a8b639c2..482f30ce 100644 --- a/.github/workflows/deploy_github_releases.yml +++ b/.github/workflows/deploy_github_releases.yml @@ -29,7 +29,7 @@ jobs: - name: Build release binaries uses: gradle/gradle-build-action@v2.2.0-beta.1 with: - arguments: --no-configuration-cache :app:assembleFreeRelease :app:assembleNonFreeRelease :app:bundleNonFreeRelease + arguments: :app:assembleFreeRelease :app:assembleNonFreeRelease :app:bundleNonFreeRelease env: SENTRY_DSN: ${{ secrets.SENTRY_DSN }} diff --git a/.github/workflows/deploy_library_releases.yml b/.github/workflows/deploy_library_releases.yml index afa9c522..55da209b 100644 --- a/.github/workflows/deploy_library_releases.yml +++ b/.github/workflows/deploy_library_releases.yml @@ -32,7 +32,7 @@ jobs: - name: Upload binaries uses: gradle/gradle-build-action@v2.2.0-beta.1 with: - arguments: --no-configuration-cache :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository + arguments: :${{ steps.task-select.outputs.PROJECT }}:publishAllPublicationsToMavenCentralRepository env: ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }} ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }} @@ -42,7 +42,7 @@ jobs: - name: Close and release repository uses: gradle/gradle-build-action@v2.2.0-beta.1 with: - arguments: --no-configuration-cache closeAndReleaseRepository + arguments: closeAndReleaseRepository env: ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }} ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }} diff --git a/.github/workflows/deploy_snapshot.yml b/.github/workflows/deploy_snapshot.yml index eeaac2bf..632f03d3 100644 --- a/.github/workflows/deploy_snapshot.yml +++ b/.github/workflows/deploy_snapshot.yml @@ -35,7 +35,7 @@ jobs: SENTRY_DSN: ${{ secrets.SENTRY_DSN }} SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} with: - arguments: --no-configuration-cache collectFreeReleaseApks collectNonFreeReleaseApks -PsentryUploadMappings + arguments: collectFreeReleaseApks collectNonFreeReleaseApks -PsentryUploadMappings - name: Clean secrets run: scripts/signing-cleanup.sh diff --git a/.github/workflows/draft_new_release.yml b/.github/workflows/draft_new_release.yml index 676dbab8..3dc6f271 100644 --- a/.github/workflows/draft_new_release.yml +++ b/.github/workflows/draft_new_release.yml @@ -69,9 +69,9 @@ jobs: # that the version number is already correct, and we only need to drop the # -SNAPSHOT suffix. if [[ "${CHECKOUT_REF}" == "develop" ]]; then - ./gradlew --no-configuration-cache --no-daemon clearPreRelease + ./gradlew --no-daemon clearPreRelease else - ./gradlew --no-configuration-cache --no-daemon bumpPatch + ./gradlew --no-daemon bumpPatch fi # Commit changes to the versioning diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index cbc2b9c2..76aab2cc 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -42,7 +42,7 @@ jobs: if: "${{ steps.service-changed.outputs.result == 'true' }}" uses: gradle/gradle-build-action@v2.2.0-beta.1 with: - arguments: --no-configuration-cache spotlessCheck + arguments: spotlessCheck unit-tests: runs-on: ubuntu-latest @@ -76,7 +76,7 @@ jobs: if: "${{ steps.service-changed.outputs.result == 'true' }}" uses: gradle/gradle-build-action@v2.2.0-beta.1 with: - arguments: --no-configuration-cache test -PslimTests + arguments: test -PslimTests - name: (Fail-only) Upload test report if: "${{ failure() }}" @@ -117,7 +117,7 @@ jobs: if: "${{ steps.service-changed.outputs.result == 'true' }}" uses: gradle/gradle-build-action@v2.2.0-beta.1 with: - arguments: --no-configuration-cache assembleFreeDebug assembleNonFreeDebug + arguments: assembleFreeDebug assembleNonFreeDebug check-api: runs-on: ubuntu-latest @@ -151,7 +151,7 @@ jobs: if: "${{ steps.service-changed.outputs.result == 'true' }}" uses: gradle/gradle-build-action@v2.2.0-beta.1 with: - arguments: --no-configuration-cache apiCheck + arguments: apiCheck lint-debug: runs-on: ubuntu-latest @@ -185,7 +185,7 @@ jobs: if: "${{ steps.service-changed.outputs.result == 'true' }}" uses: gradle/gradle-build-action@v2.2.0-beta.1 with: - arguments: --no-configuration-cache lintDebug + arguments: lintDebug assemble-release-apks: runs-on: ubuntu-latest @@ -219,4 +219,4 @@ jobs: if: "${{ steps.service-changed.outputs.result == 'true' }}" uses: gradle/gradle-build-action@v2.2.0-beta.1 with: - arguments: --no-configuration-cache aNFR + arguments: aNFR diff --git a/.github/workflows/shadow_job.yml b/.github/workflows/shadow_job.yml index 14c8af23..3abe600c 100644 --- a/.github/workflows/shadow_job.yml +++ b/.github/workflows/shadow_job.yml @@ -44,4 +44,4 @@ jobs: env: GRADLE_VERSION_OVERRIDE_com_android_tools_build_gradle: ${{ matrix.agp-version }} with: - arguments: --no-configuration-cache check + arguments: check diff --git a/.github/workflows/sync_crowdin.yml b/.github/workflows/sync_crowdin.yml index 87b09d60..69137a59 100644 --- a/.github/workflows/sync_crowdin.yml +++ b/.github/workflows/sync_crowdin.yml @@ -20,7 +20,7 @@ jobs: - name: Download new translations from Crowdin uses: gradle/gradle-build-action@v2.2.0-beta.1 with: - arguments: --no-configuration-cache crowdin + arguments: crowdin env: CROWDIN_LOGIN: ${{ secrets.CROWDIN_LOGIN }} CROWDIN_PROJECT_KEY: ${{ secrets.CROWDIN_PROJECT_KEY }} diff --git a/.github/workflows/update_publicsuffix_data.yml b/.github/workflows/update_publicsuffix_data.yml index 884bc35a..daf2a90d 100644 --- a/.github/workflows/update_publicsuffix_data.yml +++ b/.github/workflows/update_publicsuffix_data.yml @@ -20,7 +20,7 @@ jobs: - name: Download new publicsuffix data uses: gradle/gradle-build-action@v2.2.0-beta.1 with: - arguments: --no-configuration-cache updatePSL + arguments: updatePSL - name: Compare list changes 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 if: "${{ env.UPDATED == 'true' }}" with: - arguments: --no-configuration-cache :autofill-parser:test -PslimTests + arguments: :autofill-parser:test -PslimTests - name: Create Pull Request id: cpr |