From b61a92a26e5e79eb428df11db142165dbec68330 Mon Sep 17 00:00:00 2001 From: Babis Chalios Date: Tue, 21 May 2024 14:49:06 +0200 Subject: [PATCH] chore: update links to S3 CI artifacts Update the link to S3 CI artifacts in devtool and docs/getting-started.md to point to our v1.9 bucket. Signed-off-by: Babis Chalios --- docs/getting-started.md | 6 +++--- tools/devtool | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index a89f0452aea..f9534fb64f2 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -83,13 +83,13 @@ kernel image with a Ubuntu 22.04 rootfs from our CI: ARCH="$(uname -m)" # Download a linux kernel binary -wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.8/${ARCH}/vmlinux-5.10.210 +wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.9/${ARCH}/vmlinux-5.10.217 # Download a rootfs -wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.8/${ARCH}/ubuntu-22.04.ext4 +wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.9/${ARCH}/ubuntu-22.04.ext4 # Download the ssh key for the rootfs -wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.8/${ARCH}/ubuntu-22.04.id_rsa +wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.9/${ARCH}/ubuntu-22.04.id_rsa # Set user read permission on the ssh key chmod 400 ./ubuntu-22.04.id_rsa diff --git a/tools/devtool b/tools/devtool index 470442b02fe..d9da59f0e24 100755 --- a/tools/devtool +++ b/tools/devtool @@ -525,7 +525,7 @@ ensure_ci_artifacts() { # Fetch all the artifacts so they are local say "Fetching CI artifacts from S3" - S3_URL=s3://spec.ccfc.min/firecracker-ci/v1.8/$(uname -m) + S3_URL=s3://spec.ccfc.min/firecracker-ci/v1.9/$(uname -m) ARTIFACTS=$MICROVM_IMAGES_DIR/$(uname -m) if [ ! -d "$ARTIFACTS" ]; then mkdir -pv $ARTIFACTS