Skip to content

Commit dfbc88b

Browse files
committed
migrate builder.json from bootstrap branch
1 parent a42e37c commit dfbc88b

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

builder.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "aws-crt-kotlin",
3+
"packages": [],
4+
"build_steps": [
5+
"./gradlew -x test -x allTests build"
6+
],
7+
"test_steps": [
8+
"./gradlew test allTests"
9+
],
10+
"imports": [
11+
"JDK8"
12+
],
13+
"build_dir": "target/cmake-build",
14+
"build_env": {
15+
"JAVA_HOME": "{java_home}"
16+
},
17+
"test_env": {
18+
"JAVA_HOME": "{java_home}"
19+
},
20+
"hosts": {
21+
"ubuntu": {
22+
"packages": [
23+
"openjdk-8-jdk-headless"
24+
]
25+
},
26+
"debian": {
27+
"packages": [
28+
"openjdk-8-jdk-headless"
29+
]
30+
}
31+
},
32+
"targets": {
33+
"linux": {
34+
"imports": [
35+
"s2n"
36+
],
37+
"!build_steps": [
38+
"./gradlew -x test -x jvmTest build -Dlibcrypto.path={libcrypto_path}"
39+
],
40+
"!test_steps": [
41+
"./gradlew test allTests -Dlibcrypto.path={libcrypto_path}"
42+
]
43+
}
44+
}
45+
}

0 commit comments

Comments
 (0)