From 13e32509e826a3594eccb6a784a11aff3f2d8cbc Mon Sep 17 00:00:00 2001 From: kasif Date: Fri, 29 Apr 2022 17:12:10 +0530 Subject: [PATCH] clean script Signed-off-by: kasif --- .expeditor/run_linux_tests.sh | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/.expeditor/run_linux_tests.sh b/.expeditor/run_linux_tests.sh index 5786db1..7dea273 100755 --- a/.expeditor/run_linux_tests.sh +++ b/.expeditor/run_linux_tests.sh @@ -17,22 +17,3 @@ bundle config --local path vendor/bundle bundle install --jobs=7 --retry=3 echo "bundle exec task" bundle exec $1 - -# if [[ -f bundle.tar.gz && -f bundle.sha256 ]]; then # dont' check the sha if we're missing either file -# if shasum --check bundle.sha256 --status; then # if the the sha matches we're done -# echo "Bundled gems have not changed. Skipping upload to s3" -# exit -# fi -# fi - -# echo "Generating sha256 hash file of the vendor/bundle directory to ship to s3" -# shasum -a 256 vendor/bundle > bundle.sha256 - -# echo "Creating the tar.gz to of the vendor/bundle directory to ship to s3" -# tar -czf bundle.tar.gz vendor/ - -# echo "Uploading the tar.gz of the vendor/bundle directory to s3" -# aws s3 cp bundle.tar.gz "s3://public-cd-buildkite-cache/${BUILDKITE_PIPELINE_SLUG}/${BUILDKITE_LABEL}/bundle.tar.gz" || echo 'Could not push the bundler directory to s3 for caching. Future builds may be slower if this continues.' - -# echo "Uploading the sha256 hash of the vendor/bundle directory to s3" -# aws s3 cp bundle.sha256 "s3://public-cd-buildkite-cache/${BUILDKITE_PIPELINE_SLUG}/${BUILDKITE_LABEL}/bundle.sha256" || echo 'Could not push the bundler directory to s3 for caching. Future builds may be slower if this continues.'