Skip to content

Commit

Permalink
chore: Revert "temporarily disable dep caching"
Browse files Browse the repository at this point in the history
This reverts commit ce28005.
  • Loading branch information
paullatzelsperger committed Apr 23, 2024
1 parent bd193c7 commit 71621f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: eclipse-edc/.github/.github/actions/setup-build@main

- name: Run Checkstyle
run: ./gradlew checkstyleMain checkstyleTest checkstyleTestFixtures --refresh-dependencies
run: ./gradlew checkstyleMain checkstyleTest checkstyleTestFixtures

Javadoc:
runs-on: ubuntu-latest
Expand All @@ -28,7 +28,7 @@ jobs:
- uses: eclipse-edc/.github/.github/actions/setup-build@main

- name: Run Javadoc
run: ./gradlew javadoc --refresh-dependencies
run: ./gradlew javadoc

Verify-Launcher:
runs-on: ubuntu-latest
Expand All @@ -37,7 +37,7 @@ jobs:
- uses: eclipse-edc/.github/.github/actions/setup-build@main

- name: 'Build launcher'
run: ./gradlew :launcher:shadowJar --refresh-dependencies
run: ./gradlew :launcher:shadowJar

- name: 'Build Docker image'
run: docker build -t identity-hub ./launcher
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: 'Unit and system tests'
uses: eclipse-edc/.github/.github/actions/run-tests@main
with:
command: ./gradlew test --refresh-dependencies
command: ./gradlew test
timeout-minutes: 10
env:
INTEGRATION_TEST: true
Expand All @@ -100,7 +100,7 @@ jobs:
- name: Component Tests
uses: eclipse-edc/.github/.github/actions/run-tests@main
with:
command: ./gradlew compileJava compileTestJava test -DincludeTags="ComponentTest,ApiTest,EndToEndTest" --refresh-dependencies
command: ./gradlew compileJava compileTestJava test -DincludeTags="ComponentTest,ApiTest,EndToEndTest"

Upload-Coverage-Report-To-Codecov:
needs:
Expand Down
7 changes: 0 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,4 @@ allprojects {
configDirectory.set(rootProject.file("resources"))
}


}

configurations.all {
// Check for updates every build
resolutionStrategy.cacheChangingModulesFor(0, "seconds")
resolutionStrategy.cacheDynamicVersionsFor(0, "seconds")
}

0 comments on commit 71621f6

Please sign in to comment.