From 47c6dbab32075acf7444da8c4fdd67e6cd1a3e3f Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Mon, 14 Oct 2019 11:15:06 -0700 Subject: [PATCH 1/2] add var to handle staged binaries --- bin/compile | 2 ++ test/run-versions | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/compile b/bin/compile index dfc81d1..284b313 100755 --- a/bin/compile +++ b/bin/compile @@ -42,6 +42,8 @@ export BUILD_DIR CACHE_DIR ENV_DIR VENDOR_URL="https://lang-python.s3.amazonaws.com/$STACK" if [[ -n ${BUILDPACK_VENDOR_URL:-} ]]; then VENDOR_URL="$BUILDPACK_VENDOR_URL" +elif [[ -n ${USE_STAGING_BINARIES} ]]; then + VENDOR_URL="$USE_STAGING_BINARIES/$STACK" fi export VENDOR_URL diff --git a/test/run-versions b/test/run-versions index 9e30b1c..6feb5e1 100755 --- a/test/run-versions +++ b/test/run-versions @@ -4,8 +4,6 @@ # shellcheck source=bin/default_pythons source "bin/default_pythons" -assertCaptured "Installing SQLite3" - testPythonDefault() { updateVersion "pythonDefault" $DEFAULT_PYTHON_VERSION compile "pythonDefault" From d7327b8d13f77983851807e2faa1ebf51f61b80f Mon Sep 17 00:00:00 2001 From: Casey Faist Date: Mon, 14 Oct 2019 11:24:45 -0700 Subject: [PATCH 2/2] CHANGELOG --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54a410d..e2265d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ - Add Tests - Test for Pysqlite - Bug fix: pipenv no longer installs twice on CI - +- Add support for staging binary testing -------------------------------------------------------------------------------- # 157 (2019-09-18)