We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20db81e commit 224e1f9Copy full SHA for 224e1f9
.github/workflows/pull_request.yml
@@ -43,6 +43,16 @@ jobs:
43
# cache: 'gradle'
44
- name: Install Nightly Swift
45
run: "bash -xc './docker/install_nightly_untested_swift.sh'"
46
+ # Cache .m2/repository
47
+ - name: Cache local Gradle repository
48
+ uses: actions/cache@v4
49
+ continue-on-error: true
50
+ with:
51
+ path: ~/.gradle/caches
52
+ key: ${{ runner.os }}-gradle-cache-${{ hashFiles('**/build.gradle') }}-${{ ${{ hashFiles('**/build.gradle.kts') }} }}
53
+ restore-keys: |
54
+ ${{ runner.os }}-gradle-cache
55
+ ${{ runner.os }}-gradle-
56
- name: Gradle build
57
run: ./gradlew build --info --no-daemon
58
0 commit comments