From 5fd10d6edf3a5a7c6fa96c0caafa8ce9fc92ff1a Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Thu, 21 Mar 2024 18:47:05 -0700 Subject: [PATCH] workflows: don't run tests on client workflow --- .github/workflows/client.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index 2747213..ffa9ca4 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -30,32 +30,3 @@ jobs: - run: ./hack/ci/install-mac-deps.sh if: ${{ matrix.os.name == 'darwin' }} - run: ./hack/build/cargo.sh build --bin kratactl - test: - runs-on: ubuntu-latest - strategy: - matrix: - os: - - { name: linux, on: ubuntu-latest } - - { name: darwin, on: macos-14 } - arch: - - x86_64 - - aarch64 - env: - TARGET_OS: "${{ matrix.os.name }}" - TARGET_ARCH: "${{ matrix.arch }}" - name: test ${{ matrix.os.name }}-${{ matrix.arch }} - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - if: ${{ matrix.os.name != 'darwin' }} - - uses: dtolnay/rust-toolchain@stable - with: - targets: "${{ matrix.arch }}-apple-darwin" - if: ${{ matrix.os.name == 'darwin' }} - - run: ./hack/ci/install-deps.sh - if: ${{ matrix.os.name == 'linux' }} - - uses: homebrew/actions/setup-homebrew@master - if: ${{ matrix.os.name == 'darwin' }} - - run: ./hack/ci/install-mac-deps.sh - if: ${{ matrix.os.name == 'darwin' }} - - run: ./hack/build/cargo.sh test --bin kratactl