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 7123b0c commit 327f2a2Copy full SHA for 327f2a2
.nx/workflows/agents.yaml
@@ -8,6 +8,9 @@ launch-templates:
8
resource-class: 'docker_linux_amd64/extra_large'
9
image: 'ubuntu22.04-node20.19-v3'
10
init-steps:
11
+ - name: Make tmp directory in agent workflow dir
12
+ script: mkdir /home/workflows/tmp
13
+
14
- name: java version
15
script: java -version
16
build.gradle
@@ -24,6 +24,12 @@ subprojects {
24
spring.mavenRepositories()
25
}
26
27
+ tasks.withType(Test).configureEach {
28
+ if (it.name == 'dockerTest') {
29
+ environment("_JAVA_OPTIONS", "-Djava.io.tmpdir=/home/workflows/tmp")
30
+ }
31
32
33
configurations.all {
34
resolutionStrategy.cacheChangingModulesFor 0, "minutes"
35
0 commit comments