Skip to content

Commit 975bd49

Browse files
committed
Remove custom build-cache
1 parent 21a49d8 commit 975bd49

File tree

4 files changed

+3
-19
lines changed

4 files changed

+3
-19
lines changed

.github/workflows/gradle-deploy.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
deploy-docs:
1313
runs-on: ubuntu-latest
1414
env:
15-
ORG_GRADLE_PROJECT_freefairBuildCachePassword: ${{ secrets.BUILD_CACHE_PASSWORD }}
1615
ORG_GRADLE_PROJECT_freefairDocsUser: ${{ secrets.FREEFAIR_DOCS_USER }}
1716
ORG_GRADLE_PROJECT_freefairDocsPass: ${{ secrets.FREEFAIR_DOCS_PASS }}
1817
steps:
@@ -23,5 +22,5 @@ jobs:
2322
java-version: 17
2423
distribution: 'temurin'
2524
- name: Setup Gradle
26-
uses: gradle/gradle-build-action@v3
25+
uses: gradle/actions/setup-gradle@v4
2726
- run: ./gradlew uploadDocumentation -s

.github/workflows/gradle-publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ on:
77
jobs:
88
publish:
99
runs-on: ubuntu-latest
10-
env:
11-
ORG_GRADLE_PROJECT_freefairBuildCachePassword: ${{ secrets.BUILD_CACHE_PASSWORD }}
1210
steps:
1311
- uses: actions/checkout@v5
1412
- name: Set up JDK 17
@@ -17,7 +15,7 @@ jobs:
1715
java-version: 17
1816
distribution: 'temurin'
1917
- name: Setup Gradle
20-
uses: gradle/gradle-build-action@v3
18+
uses: gradle/actions/setup-gradle@v4
2119
- name: Publish local
2220
run: ./gradlew publish
2321
env:

.github/workflows/gradle.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ jobs:
1111
build:
1212
name: build
1313
runs-on: ubuntu-latest
14-
env:
15-
ORG_GRADLE_PROJECT_freefairBuildCachePassword: ${{ secrets.BUILD_CACHE_PASSWORD }}
1614
strategy:
1715
fail-fast: false
1816
matrix:
@@ -27,7 +25,7 @@ jobs:
2725
distribution: 'temurin'
2826

2927
- name: Setup Gradle
30-
uses: gradle/gradle-build-action@v3
28+
uses: gradle/actions/setup-gradle@v4
3129

3230
- run: ./gradlew -V assemble -s
3331
- run: ./gradlew -V check -s

settings.gradle

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,6 @@ develocity {
2020
}
2121
}
2222

23-
buildCache {
24-
remote(HttpBuildCache) {
25-
url = 'https://build-cache.grefer-hosting.de/cache/'
26-
push = isCiServer
27-
credentials {
28-
username = "freefair"
29-
password = providers.gradleProperty('freefairBuildCachePassword').getOrElse(null)
30-
}
31-
}
32-
}
33-
3423
dependencyResolutionManagement {
3524
repositories {
3625
mavenCentral()

0 commit comments

Comments
 (0)