From b6d0cf85eeecfa374a58a1f8aadc52f36760de05 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 10 Mar 2022 15:44:09 -0500 Subject: [PATCH] [36.0.x] remove arm64 GHA workflow (#6943) --- .github/workflows/arm64.yml | 56 ------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 .github/workflows/arm64.yml diff --git a/.github/workflows/arm64.yml b/.github/workflows/arm64.yml deleted file mode 100644 index 71a94874a1a5..000000000000 --- a/.github/workflows/arm64.yml +++ /dev/null @@ -1,56 +0,0 @@ -name: Arm64 CI -on: - push: - branches: - - main - - '*.*.x' - tags: - - '*.*' - - '*.*.*' - -permissions: read-all - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} - cancel-in-progress: true - -jobs: - linux-arm64: - if: github.repository_owner == 'pyca' - runs-on: [self-hosted, linux, ARM64] - container: ghcr.io/pyca/cryptography-runner-${{ matrix.IMAGE.IMAGE }} - strategy: - fail-fast: false - matrix: - IMAGE: - - {IMAGE: "ubuntu-focal:aarch64", TOXENV: "py38"} - name: "${{ matrix.IMAGE.TOXENV }} on ${{ matrix.IMAGE.IMAGE }}" - timeout-minutes: 20 - steps: - - name: "Delete workspace" # self-hosted runners need this, sigh - run: find ! -name '.' ! -name '..' -delete - - uses: actions/checkout@v2.3.4 - with: - persist-credentials: false - - uses: actions/cache@v2.1.6 - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - src/rust/target/ - key: ${{ runner.os }}-${{ matrix.IMAGE.IMAGE }}-cargo-2-${{ hashFiles('**/Cargo.lock') }} - - - uses: actions/checkout@v2.3.4 - with: - repository: "google/wycheproof" - path: "wycheproof" - - run: 'tox -- --wycheproof-root="wycheproof"' - env: - TOXENV: ${{ matrix.IMAGE.TOXENV }} - RUSTUP_HOME: /root/.rustup - CARGO_TARGET_DIR: ${{ format('{0}/src/rust/target/', github.workspace) }} - - uses: ./.github/actions/upload-coverage - with: - name: "${{ matrix.IMAGE.TOXENV }} on ${{ matrix.IMAGE.IMAGE }}"