From 53af713504da5d31ec53bddd8d0952adfd79bee5 Mon Sep 17 00:00:00 2001 From: Javier Bullrich Date: Fri, 16 Aug 2024 18:09:59 +0200 Subject: [PATCH] removed custom workflow in favor of existing A workflow already exists named `Check Cargo Check Runtimes`. We will add this job into that workflow --- .github/workflows/cargo-check-each-crate.yml | 30 -------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/cargo-check-each-crate.yml diff --git a/.github/workflows/cargo-check-each-crate.yml b/.github/workflows/cargo-check-each-crate.yml deleted file mode 100644 index ad75c6a9fdc15..0000000000000 --- a/.github/workflows/cargo-check-each-crate.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Cargo Check Each Crate - -on: - push: - branches: - - master - pull_request: - types: [opened, synchronize, reopened, ready_for_review, labeled] - merge_group: - -concurrency: - group: ${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} - -jobs: - cargo-check-each-crate-macos: - # GitHub Actions allows using 'env' in a container context. - # However, env variables don't work for forks: https://github.com/orgs/community/discussions/44322 - # This workaround sets the container image for each job using 'set-image' job output. - # TODO: remove once migration is complete or this workflow is fully stable - if: contains(github.event.label.name, 'GHA-migration') || contains(github.event.pull_request.labels.*.name, 'GHA-migration') - runs-on: macos-latest-xlarge - steps: - - uses: actions/checkout@v4 - - name: Install rust - run: rustup toolchain install nightly - - run: brew install protobuf - - run: rustup target add wasm32-unknown-unknown --toolchain stable-aarch64-apple-darwin - - run: rustup component add rust-src --toolchain stable-aarch64-apple-darwin - - run: time cargo check --workspace --locked