mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
add no cache for experimental builds bc cloudfront
Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
parent
71f8ca30ce
commit
0cc664fae3
1 changed files with 3 additions and 1 deletions
|
@ -282,14 +282,16 @@ EOF
|
|||
s3cmd --acl-public put "bundles/$VERSION/ubuntu/gpg" "s3://$BUCKET/gpg"
|
||||
|
||||
local gpgFingerprint=36A1D7869245C8950F966E92D8576A8BA88D21E9
|
||||
local s3Headers=
|
||||
if [[ $BUCKET == test* ]]; then
|
||||
gpgFingerprint=740B314AE3941731B942C66ADF4FD13717AAD7D6
|
||||
elif [[ $BUCKET == experimental* ]]; then
|
||||
gpgFingerprint=E33FF7BF5C91D50A6F91FFFD4CC38D40F9A96B49
|
||||
s3Headers='--add-header=Cache-Control:no-cache'
|
||||
fi
|
||||
|
||||
# Upload repo
|
||||
s3cmd --acl-public sync "$APTDIR/" "s3://$BUCKET/ubuntu/"
|
||||
s3cmd --acl-public "$s3Headers" sync "$APTDIR/" "s3://$BUCKET/ubuntu/"
|
||||
cat <<EOF | write_to_s3 s3://$BUCKET/ubuntu/index
|
||||
# Check that HTTPS transport is available to APT
|
||||
if [ ! -e /usr/lib/apt/methods/https ]; then
|
||||
|
|
Loading…
Reference in a new issue