Skip to content

Commit

Permalink
✨ feat(build.gradle): Update Gradle cache paths to use /tmp instead…
Browse files Browse the repository at this point in the history
… of /home/runner/work.
  • Loading branch information
vnobo committed Dec 16, 2024
1 parent 0d65c85 commit 205eccb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ configure(subprojects - project(":boot")) { project ->
]
buildWorkspace {
bind {
source = "/home/runner/work/plate/plate/.gradle/build/cache-${rootProject.name}-${project.name}.work"
source = "/tmp/cache-${rootProject.name}-${project.name}.work"
}
}
buildCache {
bind {
source = "/home/runner/work/plate/plate/.gradle/build/cache-${rootProject.name}-${project.name}.build"
source = "/tmp/cache-${rootProject.name}-${project.name}.build"
}
}
launchCache {
bind {
source = "/home/runner/work/plate/plate/.gradle/build/cache-${rootProject.name}-${project.name}.launch"
source = "/tmp/cache-${rootProject.name}-${project.name}.launch"
}
}
}
Expand Down

0 comments on commit 205eccb

Please sign in to comment.