Skip to content

Commit b8ceb25

Browse files
authored
Merge pull request #188 from TileDB-Inc/sethshelnutt/ch2984/enable-s3-and-serialization-in-maven-jar
Enable S3 and Serialization for prebuilt jar
2 parents 6ee4db9 + 2f63ae1 commit b8ceb25

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ set(CMAKE_CXX_EXTENSIONS OFF) # Don't use GNU extensions
4848
option(TILEDB_VERBOSE "Prints TileDB errors with verbosity" OFF)
4949
option(TILEDB_S3 "Enables S3 support using aws-cpp-sdk" OFF)
5050
option(TILEDB_HDFS "Enables HDFS support using the official Hadoop JNI bindings" OFF)
51+
option(TILEDB_SERIALIZATION "Enables TileDB Cloud support" OFF)
5152

5253
############################################################
5354
# Superbuild setup

azure-pipelines.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ stages:
2121
matrix:
2222
VS2019:
2323
imageName: 'windows-2019'
24-
TILEDB_S3: ON
24+
ORG_GRADLE_PROJECT_TILEDB_SERIALIZATION: "OFF"
25+
ORG_GRADLE_PROJECT_TILEDB_S3: "OFF"
2526
pool:
2627
vmImage: $(imageName)
2728
steps:
@@ -39,8 +40,12 @@ stages:
3940
matrix:
4041
ubuntu_18:
4142
imageName: 'ubuntu-18.04'
43+
ORG_GRADLE_PROJECT_TILEDB_SERIALIZATION: "OFF"
44+
ORG_GRADLE_PROJECT_TILEDB_S3: "OFF"
4245
macOS:
4346
imageName: 'macOS-10.14'
47+
ORG_GRADLE_PROJECT_TILEDB_SERIALIZATION: "OFF"
48+
ORG_GRADLE_PROJECT_TILEDB_S3: "OFF"
4449
pool:
4550
vmImage: $(imageName)
4651
steps:
@@ -54,8 +59,12 @@ stages:
5459
matrix:
5560
ubuntu_18:
5661
imageName: 'ubuntu-18.04'
62+
ORG_GRADLE_PROJECT_TILEDB_S3: "ON"
63+
ORG_GRADLE_PROJECT_TILEDB_SERIALIZATION: "ON"
5764
macOS:
5865
imageName: 'macOS-10.14'
66+
ORG_GRADLE_PROJECT_TILEDB_S3: "ON"
67+
ORG_GRADLE_PROJECT_TILEDB_SERIALIZATION: "ON"
5968
pool:
6069
vmImage: $(imageName)
6170
steps:
@@ -65,6 +74,7 @@ stages:
6574
matrix:
6675
windows_19:
6776
imageName: 'windows-2019'
77+
ORG_GRADLE_PROJECT_TILEDB_S3: "ON"
6878
pool:
6979
vmImage: $(imageName)
7080
steps:
@@ -78,6 +88,8 @@ stages:
7888
matrix:
7989
ubuntu_18:
8090
imageName: 'ubuntu-18.04'
91+
ORG_GRADLE_PROJECT_TILEDB_S3: "ON"
92+
ORG_GRADLE_PROJECT_TILEDB_SERIALIZATION: "ON"
8193
pool:
8294
vmImage: $(imageName)
8395

@@ -141,4 +153,4 @@ stages:
141153
pool:
142154
vmImage: $(imageName)
143155
steps:
144-
- template: ci/tiledb-java-final-jar.yml
156+
- template: ci/tiledb-java-final-jar.yml

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group 'io.tiledb'
12-
version '0.3.1-SNAPSHOT'
12+
version '0.3.2-SNAPSHOT'
1313

1414
repositories {
1515
jcenter()

cmake/Modules/FindTileDB_EP.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ if (NOT TILEDB_FOUND)
4949
-DTILEDB_VERBOSE=${TILEDB_VERBOSE}
5050
-DTILEDB_S3=${TILEDB_S3}
5151
-DTILEDB_HDFS=${TILEDB_HDFS}
52+
-DTILEDB_SERIALIZATION=${TILEDB_SERIALIZATION}
5253
-DTILEDB_FORCE_ALL_DEPS=ON
5354
UPDATE_COMMAND ""
5455
INSTALL_COMMAND

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TILEDB_GIT_REPOSITORY=https://github.com/TileDB-Inc/TileDB
22
TILEDB_GIT_TAG=2.0.3
33
TILEDB_VERBOSE=OFF
4-
TILEDB_S3=OFF
4+
TILEDB_S3=ON
55
TILEDB_HDFS=OFF
66
TILEDB_SERIALIZATION=OFF

0 commit comments

Comments
 (0)