Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/integration_tests/security/test_sec_audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ def set_of_vulnerabilities(output: CommandReturn):
)

git_ab_test_host_command_if_pr(
"cargo audit --deny warnings -q --json |grep -Po '{.*}'",
"cargo audit --deny warnings -q --json",
comparator=set_did_not_grow_comparator(set_of_vulnerabilities),
)
3 changes: 2 additions & 1 deletion tools/devctr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-too
&& rustup target add x86_64-unknown-linux-musl \
&& rustup target add aarch64-unknown-linux-musl \
&& rustup component add llvm-tools-preview clippy rustfmt \
&& cargo install --locked cargo-audit cargo-deny grcov cargo-sort cargo-afl \
&& cargo install --locked cargo-audit grcov cargo-sort cargo-afl \
&& cargo install --locked cargo-deny --version 0.17.0 \
&& cargo install --locked kani-verifier && cargo kani setup \
\
&& NIGHTLY_TOOLCHAIN=$(rustup toolchain list | grep nightly | tr -d '\n') \
Expand Down
2 changes: 1 addition & 1 deletion tools/devtool
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
DEVCTR_IMAGE_NO_TAG="public.ecr.aws/firecracker/fcuvm"

# Development container tag
DEVCTR_IMAGE_TAG=${DEVCTR_IMAGE_TAG:-v77}
DEVCTR_IMAGE_TAG=${DEVCTR_IMAGE_TAG:-v78}

# Development container image (name:tag)
# This should be updated whenever we upgrade the development container.
Expand Down