From 07005ba2327f0d9d530dd8924150b8c2bd606e3e Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sun, 19 Mar 2023 12:55:33 +0100 Subject: [PATCH] feat: with only build --- .github/workflows/ci-multiplatform.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-multiplatform.yml b/.github/workflows/ci-multiplatform.yml index 5e1c43a..432311d 100644 --- a/.github/workflows/ci-multiplatform.yml +++ b/.github/workflows/ci-multiplatform.yml @@ -102,14 +102,14 @@ jobs: run: | echo "cargo command is: ${{ env.CARGO }}" echo "target flag is: ${{ env.TARGET_FLAGS }}" - - name: Build ripgrep and all crates + - name: Build run: ${{ env.CARGO }} build --verbose --workspace ${{ env.TARGET_FLAGS }} - name: Run tests (without cross) if: matrix.target == '' run: ${{ env.CARGO }} test --verbose --workspace ${{ env.TARGET_FLAGS }} - - name: Run tests (with cross) - if: matrix.target != '' - run: ${{ env.CARGO }} test --verbose --workspace ${{ env.TARGET_FLAGS }} + #- name: Run tests (with cross) + # if: matrix.target != '' + # run: ${{ env.CARGO }} test --verbose --workspace ${{ env.TARGET_FLAGS }} rustfmt: name: rustfmt runs-on: ubuntu-22.04