Skip to content

Commit c72a628

Browse files
committed
Replace builder.json
1 parent f6333a0 commit c72a628

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

builder.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "aws-crt-kotlin",
3+
"packages": [],
4+
"variables": {
5+
"gradlew": "{source_dir}/gradlew -p {source_dir}"
6+
},
7+
"imports": [
8+
"JDK8"
9+
],
10+
"build_dir": "target/cmake-build",
11+
"env": {
12+
"JAVA_HOME": "{java_home}"
13+
},
14+
"build_steps": [
15+
"{gradlew} assemble"
16+
],
17+
"post_build_steps": [
18+
"{gradlew} publishToMavenLocal"
19+
],
20+
"test_steps": [
21+
"{gradlew} apiCheck",
22+
"{gradlew} test jvmTest"
23+
],
24+
"targets": {
25+
"linux": {
26+
"imports": [
27+
"s2n"
28+
],
29+
"!build_steps": [
30+
"{gradlew} assemble -Dlibcrypto.path={libcrypto_path}"
31+
],
32+
"!test_steps": [
33+
"{gradlew} apiCheck",
34+
"{gradlew} test jvmTest -Dlibcrypto.path={libcrypto_path}"
35+
]
36+
}
37+
}
38+
}

0 commit comments

Comments
 (0)