Skip to content

rust-beta

rust-beta #20

Workflow file for this run

# Builds the proxy on the beta toolchain to help catch Rust regressions before they hit stable.
name: rust-beta
on:
workflow_dispatch: {}
pull_request:
paths:
- justfile
- .github/workflows/beta.yml
schedule:
# Run weekly on wednesday @ midnightish Pacific-time.
- cron: "30 7 * * 3"
env:
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUSTUP_MAX_RETRIES: 10
RUSTFLAGS: "-D warnings --cfg tokio_unstable"
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-24.04
container: ghcr.io/linkerd/dev:v45-rust
timeout-minutes: 20
continue-on-error: true
steps:
- run: rustup toolchain install --profile=minimal beta
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- run: git config --global --add safe.directory "$PWD" # actions/runner#2033
- run: just toolchain=beta fetch
- run: just toolchain=beta build