From 0e4b79b9b0d92c96d39ec6581ea889194b94d531 Mon Sep 17 00:00:00 2001 From: Lilith River Date: Tue, 21 Jan 2025 02:15:56 -0700 Subject: [PATCH] test_ci specify --target --- .github/workflows/test_ci.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/test_ci.yml b/.github/workflows/test_ci.yml index 7c8cb816a..0075e2e92 100644 --- a/.github/workflows/test_ci.yml +++ b/.github/workflows/test_ci.yml @@ -108,7 +108,7 @@ jobs: echo "RUSTFLAGS=${{ matrix.target-cpu && format('-C target-cpu={0}',matrix.target-cpu) }} ${{ matrix.target-feature && format('-C target-feature={0}',matrix.target-feature) }}" >> $GITHUB_ENV - name: Test - run: cargo test --all --locked --release ${{ matrix.features && format('--features={0}',matrix.features) }} + run: cargo test --all --locked --target ${{ matrix.target }} --release ${{ matrix.features && format('--features={0}',matrix.features) }} shell: bash if: matrix.cross != 'true' @@ -124,15 +124,3 @@ jobs: args: "--locked --release ${{ matrix.features && format('--features={0}',matrix.features) }}" if: matrix.cross == 'true' - - - - - name: "Test creating a NuGet Package Imageflow.NativeRuntime.${{ matrix.nuget-rid }} in ./artifacts/nuget" - shell: bash - run: ./ci/pack_nuget/pack.sh - env: - CI_TAG: 'vfake' - PACKAGE_SUFFIX: ${{ matrix.target }} - NUGET_RUNTIME: ${{ matrix.nuget-rid }} - REPO_NAME: ${{ github.repository }} - BINARIES_DIR: "${{ github.workspace }}/${{ env.REL_BINARIES_DIR }}"