Skip to content

Commit eb4540c

Browse files
committed
ci: update CI bucket to point to v1.10
Switch devtool to fetch kernels from v1.10 CI bucket. Also update links in our Getting Started guides to point to the new bucket. Signed-off-by: Babis Chalios <[email protected]>
1 parent a801f43 commit eb4540c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,16 +100,16 @@ kernel image with a Ubuntu 22.04 rootfs from our CI:
100100
```bash
101101
ARCH="$(uname -m)"
102102

103-
latest=$(wget "http://spec.ccfc.min.s3.amazonaws.com/?prefix=firecracker-ci/v1.9/x86_64/vmlinux-5.10&list-type=2" -O - 2>/dev/null | grep "(?<=<Key>)(firecracker-ci/v1.9/x86_64/vmlinux-5\.10\.[0-9]{3})(?=</Key>)" -o -P)
103+
latest=$(wget "http://spec.ccfc.min.s3.amazonaws.com/?prefix=firecracker-ci/v1.10/x86_64/vmlinux-5.10&list-type=2" -O - 2>/dev/null | grep "(?<=<Key>)(firecracker-ci/v1.10/x86_64/vmlinux-5\.10\.[0-9]{3})(?=</Key>)" -o -P)
104104

105105
# Download a linux kernel binary
106106
wget https://s3.amazonaws.com/spec.ccfc.min/${latest}
107107

108108
# Download a rootfs
109-
wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.9/${ARCH}/ubuntu-22.04.ext4
109+
wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.10/${ARCH}/ubuntu-22.04.ext4
110110

111111
# Download the ssh key for the rootfs
112-
wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.9/${ARCH}/ubuntu-22.04.id_rsa
112+
wget https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.10/${ARCH}/ubuntu-22.04.id_rsa
113113

114114
# Set user read permission on the ssh key
115115
chmod 400 ./ubuntu-22.04.id_rsa

tools/devtool

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ ensure_ci_artifacts() {
529529

530530
# Fetch all the artifacts so they are local
531531
say "Fetching CI artifacts from S3"
532-
S3_URL=s3://spec.ccfc.min/firecracker-ci/v1.9/$(uname -m)
532+
S3_URL=s3://spec.ccfc.min/firecracker-ci/v1.10/$(uname -m)
533533
ARTIFACTS=$MICROVM_IMAGES_DIR/$(uname -m)
534534
if [ ! -d "$ARTIFACTS" ]; then
535535
mkdir -pv $ARTIFACTS

0 commit comments

Comments
 (0)