From d1df5b8c1a3b5120c0fbc8473e0f61cb597ff028 Mon Sep 17 00:00:00 2001 From: Tyler Cook <10459406+cilki@users.noreply.github.com> Date: Sat, 1 Jun 2024 15:36:58 -0500 Subject: [PATCH] ci: remove unneeded workflows --- .github/workflows/ci.yml | 31 +------------------------------ 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa19455a1..eada1a6c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: build: name: target (${{ matrix.pretty }},${{ matrix.os }}) runs-on: ${{ matrix.os }} - needs: [shellcheck, test, generate-matrix, check] + needs: [generate-matrix] if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'merge_group' || github.event_name == 'issue_comment' || github.event_name == 'schedule') && needs.generate-matrix.outputs.matrix != '{}' && needs.generate-matrix.outputs.matrix != '[]' && needs.generate-matrix.outputs.matrix != '' concurrency: group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.pretty }} @@ -130,35 +130,6 @@ jobs: TARGET: ${{ matrix.target }} IMAGE: ${{ steps.build-docker-image.outputs.image }} shell: bash - - name: Test Image - if: steps.prepare-meta.outputs.has-image && steps.prepare-meta.outputs.test-variant == 'default' - run: ./ci/test.sh - env: - TARGET: ${{ matrix.target }} - CPP: ${{ matrix.cpp }} - DYLIB: ${{ matrix.dylib }} - STD: ${{ matrix.std }} - BUILD_STD: ${{ matrix.build-std }} - RUN: ${{ matrix.run }} - RUNNERS: ${{ matrix.runners }} - shell: bash - - uses: ./.github/actions/cargo-install-upload-artifacts - if: matrix.deploy - with: - target: ${{ matrix.target }} - - - name: Test Zig Image - if: steps.prepare-meta.outputs.has-image && steps.prepare-meta.outputs.test-variant == 'zig' - run: ./ci/test-zig-image.sh - shell: bash - - - name: Test Cross Image - if: steps.prepare-meta.outputs.has-image && steps.prepare-meta.outputs.test-variant == 'cross' - run: ./ci/test-cross-image.sh - env: - TARGET: 'aarch64-unknown-linux-gnu' - IMAGE: 'ghcr.io/cross-rs/aarch64-unknown-linux-gnu:main' - shell: bash - name: Login to GitHub Container Registry if: steps.prepare-meta.outputs.has-image