mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
This step has been failing way more than reasonable across my various repos. With the provided path, there will be 1 file uploaded Artifact name is valid! Root directory input is valid! Attempt 1 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 3000 ms... Attempt 2 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 6029 ms... Attempt 3 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 8270 ms... Attempt 4 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 12577 ms... Error: Failed to CreateArtifact: Failed to make request after 5 attempts: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact
83 lines
2.3 KiB
YAML
83 lines
2.3 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
schedule: [cron: "40 1 * * *"]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
RUSTFLAGS: -Dwarnings
|
|
|
|
jobs:
|
|
pre_ci:
|
|
uses: dtolnay/.github/.github/workflows/pre_ci.yml@master
|
|
|
|
test:
|
|
name: ${{matrix.name || format('Rust {0}', matrix.rust)}}
|
|
needs: pre_ci
|
|
if: needs.pre_ci.outputs.continue
|
|
runs-on: ${{matrix.os}}-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
rust: [nightly, beta, stable, 1.74.0]
|
|
os: [ubuntu]
|
|
include:
|
|
- name: macOS
|
|
os: macos
|
|
rust: nightly
|
|
- name: Windows (gnu)
|
|
os: windows
|
|
rust: nightly-x86_64-pc-windows-gnu
|
|
- name: Windows (msvc)
|
|
os: windows
|
|
rust: nightly-x86_64-pc-windows-msvc
|
|
timeout-minutes: 45
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@master
|
|
with:
|
|
toolchain: ${{matrix.rust}}
|
|
- name: Enable type layout randomization
|
|
run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
|
|
if: matrix.rust == 'nightly'
|
|
- run: cargo check --locked
|
|
- run: cargo update
|
|
- run: cargo check
|
|
- run: cargo test
|
|
if: matrix.os == 'ubuntu' && matrix.rust == 'nightly'
|
|
- run: cargo run -- expand --manifest-path tests/Cargo.toml > expand.rs && diff tests/lib.expand.rs expand.rs
|
|
if: startsWith(matrix.rust, 'nightly')
|
|
- uses: actions/upload-artifact@v4
|
|
if: matrix.os == 'ubuntu' && matrix.rust == 'nightly' && always()
|
|
with:
|
|
name: Cargo.lock
|
|
path: Cargo.lock
|
|
continue-on-error: true
|
|
|
|
clippy:
|
|
name: Clippy
|
|
runs-on: ubuntu-latest
|
|
if: github.event_name != 'pull_request'
|
|
timeout-minutes: 45
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@clippy
|
|
- run: cargo clippy --tests -- -Dclippy::all -Dclippy::pedantic
|
|
|
|
outdated:
|
|
name: Outdated
|
|
runs-on: ubuntu-latest
|
|
if: github.event_name != 'pull_request'
|
|
timeout-minutes: 45
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- uses: dtolnay/install@cargo-outdated
|
|
- run: cargo tree --package bat --depth 0 | grep "^bat v$(cat src/bat.version)$"
|
|
- run: cargo update
|
|
- run: cargo outdated --workspace --exit-code 1
|