Skip to content

Commit 69dc0f7

Browse files
committed
Add 'os.name' and 'os.arch' as test inputs
1 parent 9a7214f commit 69dc0f7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,8 @@ publishingConventions {
1616
}
1717

1818
testingConventions { testGradleVersions("7.4", "7.6.5", "8.0.2", "8.14.2") }
19+
20+
tasks.test {
21+
inputs.property("operatingSystemName", System.getProperty("os.name"))
22+
inputs.property("operatingSystemArch", System.getProperty("os.arch"))
23+
}

0 commit comments

Comments
 (0)