From 4c484ded1647d362a0f400b1ef53a32e82fa76d3 Mon Sep 17 00:00:00 2001 From: Simon Marquis Date: Sat, 31 May 2025 11:28:03 +0100 Subject: [PATCH 1/2] Remove unnecessary chmod ```console $ stat -c "%a %n" gradlew 777 gradlew ``` --- .github/workflows/build_and_test.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 1fd2b36f..89bce487 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -37,9 +37,6 @@ jobs: # with: # cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }} - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - name: Build debug APK run: ./gradlew assembleDebug --no-configuration-cache @@ -121,9 +118,6 @@ jobs: - name: Setup Gradle uses: gradle/actions/setup-gradle@v4 - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - name: Build run: ./gradlew assembleDebug assembleDebugAndroidTest @@ -143,4 +137,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: test-reports-${{ matrix.api-level }} - path: '**/build/reports/androidTests' \ No newline at end of file + path: '**/build/reports/androidTests' From 901e61c9dc13c517e52193bd60e9d45cccf76db4 Mon Sep 17 00:00:00 2001 From: Simon Marquis Date: Mon, 7 Jul 2025 18:33:30 +0200 Subject: [PATCH 2/2] trigger