Skip to content

Commit ee1e7c4

Browse files
authored
Merge pull request firecracker-microvm#254 from kzys/v0220
Support Firecracker v0.22.0
2 parents d93b040 + 6ea722e commit ee1e7c4

17 files changed

+71
-1610
lines changed

.buildkite/pipeline.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ steps:
8787
queue: "${BUILDKITE_AGENT_META_DATA_QUEUE:-default}"
8888
distro: "${BUILDKITE_AGENT_META_DATA_DISTRO}"
8989
hostname: "${BUILDKITE_AGENT_META_DATA_HOSTNAME}"
90-
soft_fail:
91-
- exit_status: "*"
9290

9391
- label: ':hammer: root tests'
9492
commands:
@@ -101,8 +99,6 @@ steps:
10199
queue: "${BUILDKITE_AGENT_META_DATA_QUEUE:-default}"
102100
distro: "${BUILDKITE_AGENT_META_DATA_DISTRO}"
103101
hostname: "${BUILDKITE_AGENT_META_DATA_HOSTNAME}"
104-
soft_fail:
105-
- exit_status: "*"
106102

107103
- label: ':hammer: test against firecracker master'
108104
env:

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ GID = $(shell id -g)
2626

2727
# The below files are needed and can be downloaded from the internet
2828
testdata_objects = testdata/vmlinux testdata/root-drive.img testdata/firecracker testdata/jailer
29+
firecracker_version = v0.22.0
2930

3031
# --location is needed to follow redirects on github.com
3132
curl = curl --location
@@ -58,11 +59,11 @@ testdata/vmlinux:
5859
$(curl) -o $@ https://s3.amazonaws.com/spec.ccfc.min/img/hello/kernel/hello-vmlinux.bin
5960

6061
testdata/firecracker:
61-
$(curl) -o $@ https://github.com/firecracker-microvm/firecracker/releases/download/v0.21.1/firecracker-v0.21.1-x86_64
62+
$(curl) -o $@ https://github.com/firecracker-microvm/firecracker/releases/download/$(firecracker_version)/firecracker-$(firecracker_version)-x86_64
6263
chmod +x $@
6364

6465
testdata/jailer:
65-
$(curl) -o $@ https://github.com/firecracker-microvm/firecracker/releases/download/v0.21.1/jailer-v0.21.1-x86_64
66+
$(curl) -o $@ https://github.com/firecracker-microvm/firecracker/releases/download/$(firecracker_version)/jailer-$(firecracker_version)-x86_64
6667
chmod +x $@
6768

6869
testdata/root-drive.img:

client/models/machine_configuration.go

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/models/snapshot_create_params.go

Lines changed: 0 additions & 150 deletions
This file was deleted.

client/models/snapshot_load_params.go

Lines changed: 0 additions & 97 deletions
This file was deleted.

0 commit comments

Comments
 (0)