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
3 changes: 3 additions & 0 deletions .github/workflows/ci-fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ jobs:
- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler

- name: Install CloudFormation linter
run: pipx install cfn-lint

- name: Install zig (needed by cargo-zigbuild for example builds)
run: pip3 install ziglang

Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/e2e-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ jobs:
echo "build_images=true" >> $GITHUB_OUTPUT
echo "build_base_image=true" >> $GITHUB_OUTPUT
echo "build_agent_image=true" >> $GITHUB_OUTPUT
echo "skip_cleanup=false" >> $GITHUB_OUTPUT
echo "skip_cleanup=true" >> $GITHUB_OUTPUT
echo "test_filter=" >> $GITHUB_OUTPUT
echo "network_mode=none" >> $GITHUB_OUTPUT
exit 0
Expand Down Expand Up @@ -1314,7 +1314,10 @@ jobs:

cleanup:
needs: [compute-matrix, setup, push-test, cloudformation-test, terraform-test, local-test]
if: always() && needs.compute-matrix.outputs.skip_cleanup != 'true'
if: |
always() &&
needs.compute-matrix.outputs.skip_cleanup != 'true' &&
needs.setup.result == 'success'
runs-on: depot-ubuntu-24.04-arm
timeout-minutes: 30
steps:
Expand Down
66 changes: 33 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading