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