forked from awslabs/aws-crt-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
builder.json
38 lines (38 loc) · 877 Bytes
/
builder.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "aws-crt-kotlin",
"packages": [],
"variables": {
"gradlew": "{source_dir}/gradlew -p {source_dir}"
},
"imports": [
"JDK8"
],
"build_dir": "target/cmake-build",
"env": {
"JAVA_HOME": "{java_home}"
},
"build_steps": [
"{gradlew} assemble"
],
"post_build_steps": [
"{gradlew} publishToMavenLocal"
],
"test_steps": [
"{gradlew} apiCheck",
"{gradlew} test jvmTest"
],
"targets": {
"linux": {
"imports": [
"s2n"
],
"!build_steps": [
"{gradlew} assemble -Dlibcrypto.path={libcrypto_path}"
],
"!test_steps": [
"{gradlew} apiCheck",
"{gradlew} test jvmTest -Dlibcrypto.path={libcrypto_path}"
]
}
}
}