Skip to content

Commit

Permalink
Merge pull request #106 from TileDB-Inc/ss/ci-testing-1.7.7
Browse files Browse the repository at this point in the history
CI should use 1.7.7 for testing
  • Loading branch information
Shelnutt2 authored Mar 31, 2020
2 parents aff5641 + 1079af4 commit 8f0c515
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/ci_install_tiledb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ set -v -x

original_dir=$PWD

# Install tiledb using 1.6 release
# Install tiledb using 1.7.7 release
mkdir build_deps && cd build_deps \
&& git clone https://github.com/TileDB-Inc/TileDB.git && cd TileDB \
&& git clone https://github.com/TileDB-Inc/TileDB.git -b 1.7.7 && cd TileDB \
&& export deps_args="" \
&& export bootstrap_args="--enable=verbose,static-tiledb,serialization" \
&& mkdir -p build && cd build

# Configure and build TileDB
../bootstrap $bootstrap_args \
&& make -j4 \
&& make -C tiledb install
&& make -j4 -C tiledb install

cd $original_dir

Expand Down

0 comments on commit 8f0c515

Please sign in to comment.