Use an Amazon S3 bucket for downloading deps (#6526)

Summary:
After we had a lot of failures with maven.org downloads, we
wanted an alternative location for downloading binary dependencies.
Hosting them through github would have been good in terms of
organizational and network dependencies, but that approach seems to be
awkward (fake releases, so would need a 'rocksdb-deps' repo) and
strangely complicated for Facebook policy on open source repositories.

This commit moves the downloads (that are not officially hosted by
others on github) from my personal rocksdb fork to an S3 bucket owned
by the Facebook RocksDB AWS account. Facebook employees can access
this through an internal tool, and we should be able to grant permission
to outside collaborators.

Assuming this works out, I will back-port to older branches to stabilize
their CI testing as well.
Pull Request resolved: https://github.com/facebook/rocksdb/pull/6526

Test Plan: CI

Differential Revision: D20430130

Pulled By: pdillinger

fbshipit-source-id: df52394a65e0a57942db3039bdaade8a4d520cb2
main
Peter Dillinger 5 years ago committed by Facebook GitHub Bot
parent 5c30e6c088
commit 85dbdf2586
  1. 2
      .travis.yml
  2. 8
      java/CMakeLists.txt
  3. 8
      java/Makefile

@ -91,7 +91,7 @@ install:
sudo apt-get install -y mingw-w64 ; sudo apt-get install -y mingw-w64 ;
fi fi
- if [[ "${JOB_NAME}" == cmake* ]] && [ "${TRAVIS_OS_NAME}" == linux ]; then - if [[ "${JOB_NAME}" == cmake* ]] && [ "${TRAVIS_OS_NAME}" == linux ]; then
CMAKE_DIST_URL="https://github.com/pdillinger/rocksdb/releases/download/cmake-3.14.5/cmake-3.14.5-Linux-$(uname -m).tar.bz2"; CMAKE_DIST_URL="https://rocksdb-deps.s3-us-west-2.amazonaws.com/cmake/cmake-3.14.5-Linux-$(uname -m).tar.bz2";
TAR_OPT="--strip-components=1 -xj"; TAR_OPT="--strip-components=1 -xj";
if [ "aarch64" == "$(uname -m)" ]; then if [ "aarch64" == "$(uname -m)" ]; then
sudo apt-get install -y libuv1 librhash0; sudo apt-get install -y libuv1 librhash0;

@ -318,11 +318,9 @@ endif()
if (DEFINED CUSTOM_DEPS_URL) if (DEFINED CUSTOM_DEPS_URL)
set(DEPS_URL ${CUSTOM_DEPS_URL}/) set(DEPS_URL ${CUSTOM_DEPS_URL}/)
else () else ()
# This is a URL for artifacts from a "fake" release on pdillinger's fork, # Using a Facebook AWS account for S3 storage. (maven.org has a history
# so as not to put binaries in git (ew). We should move to hosting these # of failing in Travis builds.)
# under the facebook account on github, or something else more reliable set(DEPS_URL "https://rocksdb-deps.s3-us-west-2.amazonaws.com/jars")
# than maven.org, which has been failing frequently from Travis.
set(DEPS_URL "https://github.com/pdillinger/rocksdb/releases/download/v6.6.x-java-deps")
endif() endif()
if(NOT EXISTS ${JAVA_JUNIT_JAR}) if(NOT EXISTS ${JAVA_JUNIT_JAR})

@ -217,11 +217,9 @@ ifneq ($(DEBUG_LEVEL),0)
JAVAC_ARGS += -Xlint:deprecation -Xlint:unchecked JAVAC_ARGS += -Xlint:deprecation -Xlint:unchecked
endif endif
# This is a URL for artifacts from a "fake" release on pdillinger's fork, # Using a Facebook AWS account for S3 storage. (maven.org has a history
# so as not to put binaries in git (ew). We should move to hosting these # of failing in Travis builds.)
# under the facebook account on github, or something else more reliable DEPS_URL?=https://rocksdb-deps.s3-us-west-2.amazonaws.com/jars
# than maven.org, which has been failing frequently from Travis.
DEPS_URL?=https://github.com/pdillinger/rocksdb/releases/download/v6.6.x-java-deps
clean: clean-not-downloaded clean-downloaded clean: clean-not-downloaded clean-downloaded

Loading…
Cancel
Save