build(deps): update rustix
to v0.36.16/v0.37.7
#1868
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run integration tests | |
name: integration | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
paths: | |
- Cargo.lock | |
- "**/*.rs" | |
- "**/*.toml" | |
- justfile | |
- .github/workflows/integration.yml | |
env: | |
CARGO_INCREMENTAL: 0 | |
CARGO_NET_RETRY: 10 | |
RUSTFLAGS: "-D warnings -A deprecated" | |
RUSTUP_MAX_RETRIES: 10 | |
# Run only the app-level tests. These may take longer to compile (usually due to very large stack | |
# types) and have the potential to be flakey as they depend on opening sockets and may have timing | |
# sensitivity. | |
jobs: | |
test: | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
container: ghcr.io/linkerd/dev:v40-rust | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 | |
- run: git config --global --add safe.directory "$PWD" # actions/runner#2033 | |
- run: just fetch | |
- run: | | |
just test-crate linkerd-app --no-run \ | |
--package=linkerd-app-core \ | |
--package=linkerd-app-gateway \ | |
--package=linkerd-app-inbound \ | |
--package=linkerd-app-outbound \ | |
--package=linkerd-app-test | |
- run: | | |
just test-crate linkerd-app \ | |
--package=linkerd-app-core \ | |
--package=linkerd-app-gateway \ | |
--package=linkerd-app-inbound \ | |
--package=linkerd-app-outbound \ | |
--package=linkerd-app-test | |
- run: | | |
just test-crate linkerd-app-integration --no-run \ | |
--no-default-features --features=flakey-in-coverage | |
- run: | | |
just test-crate linkerd-app-integration \ | |
--no-default-features --features=flakey-in-coverage |