From 73cdd802620f34a14ed00ccb9a7963e930741b71 Mon Sep 17 00:00:00 2001 From: paketo-bot Date: Tue, 13 Feb 2024 13:36:13 +0000 Subject: [PATCH 1/6] Updating github-config --- scripts/integration.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/integration.sh b/scripts/integration.sh index 4836392..46ffbdb 100755 --- a/scripts/integration.sh +++ b/scripts/integration.sh @@ -147,7 +147,6 @@ function tests::run() { util::print::title "Run Buildpack Runtime Integration Tests" util::print::info "Using ${1} as builder..." - pack config experimental true export CGO_ENABLED=0 pushd "${BUILDPACKDIR}" > /dev/null if GOMAXPROCS="${GOMAXPROCS:-4}" go test -count=1 -timeout 0 ./integration/... -v -run Integration | tee "${2}"; then From 18900e3c8eb0072615d9a30d5703a2769a265c1e Mon Sep 17 00:00:00 2001 From: paketo-bot Date: Wed, 14 Feb 2024 13:37:33 +0000 Subject: [PATCH 2/6] Updating github-config --- scripts/.util/tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/.util/tools.json b/scripts/.util/tools.json index 27bf5a5..4dde764 100644 --- a/scripts/.util/tools.json +++ b/scripts/.util/tools.json @@ -1,5 +1,5 @@ { - "createpackage": "v1.68.1", + "createpackage": "v1.68.2", "jam": "v2.7.0", "pack": "v0.33.1" } From 171479680d28048ee733ddb6236cea61e6efed17 Mon Sep 17 00:00:00 2001 From: paketo-bot Date: Fri, 16 Feb 2024 13:37:37 +0000 Subject: [PATCH 3/6] Updating github-config --- scripts/.util/tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/.util/tools.json b/scripts/.util/tools.json index 4dde764..5125714 100644 --- a/scripts/.util/tools.json +++ b/scripts/.util/tools.json @@ -1,5 +1,5 @@ { "createpackage": "v1.68.2", "jam": "v2.7.0", - "pack": "v0.33.1" + "pack": "v0.33.2" } From c70bd2d6000e47d4eecea38012bfaa71f814cb7a Mon Sep 17 00:00:00 2001 From: paketo-bot Date: Tue, 27 Feb 2024 13:39:37 +0000 Subject: [PATCH 4/6] Updating github-config --- scripts/.util/tools.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/scripts/.util/tools.sh b/scripts/.util/tools.sh index 35addb0..801e6ac 100644 --- a/scripts/.util/tools.sh +++ b/scripts/.util/tools.sh @@ -135,6 +135,13 @@ function util::tools::pack::install() { version="$(jq -r .pack "$(dirname "${BASH_SOURCE[0]}")/tools.json")" + local pack_config_enable_experimental + if [ -f "$(dirname "${BASH_SOURCE[0]}")/../options.json" ]; then + pack_config_enable_experimental="$(jq -r .pack_config_enable_experimental "$(dirname "${BASH_SOURCE[0]}")/../options.json")" + else + pack_config_enable_experimental="false" + fi + tmp_location="/tmp/pack.tgz" curl_args=( "--fail" @@ -158,6 +165,10 @@ function util::tools::pack::install() { tar xzf "${tmp_location}" -C "${dir}" chmod +x "${dir}/pack" + if [[ "${pack_config_enable_experimental}" == "true" ]]; then + "${dir}"/pack config experimental true + fi + rm "${tmp_location}" else util::print::info "Using pack $("${dir}"/pack version)" From 6b472a6fc3f78d7cbb7c60693a938129b784e443 Mon Sep 17 00:00:00 2001 From: paketo-bot Date: Tue, 5 Mar 2024 13:38:35 +0000 Subject: [PATCH 5/6] Updating github-config --- scripts/.util/tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/.util/tools.json b/scripts/.util/tools.json index 5125714..618569b 100644 --- a/scripts/.util/tools.json +++ b/scripts/.util/tools.json @@ -1,5 +1,5 @@ { "createpackage": "v1.68.2", - "jam": "v2.7.0", + "jam": "v2.7.1", "pack": "v0.33.2" } From 6c2a143c484ff96b9bf6fdc78a27cd9354668e43 Mon Sep 17 00:00:00 2001 From: Costas Papastathis Date: Fri, 15 Mar 2024 17:18:07 +0200 Subject: [PATCH 6/6] enabling experimental features through options.json --- scripts/.syncignore | 1 + scripts/options.json | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 scripts/.syncignore create mode 100644 scripts/options.json diff --git a/scripts/.syncignore b/scripts/.syncignore new file mode 100644 index 0000000..ac5fd81 --- /dev/null +++ b/scripts/.syncignore @@ -0,0 +1 @@ +options.json diff --git a/scripts/options.json b/scripts/options.json new file mode 100644 index 0000000..89ee79c --- /dev/null +++ b/scripts/options.json @@ -0,0 +1,3 @@ +{ + "pack_config_enable_experimental": true +}