Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
ibigbug committed Sep 24, 2024
1 parent 8a70085 commit 8d103bf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ jobs:
env:
CLASH_DOCKER_TEST: "true"

- name: Cargo test (on linux and windows with docker)
- name: Cargo test (docker test on linux)
uses: clechasseur/rs-cargo@v2
if: ${{ !contains(matrix.os, 'macos') && matrix.target != 'aarch64-pc-windows-msvc' }}
if: startsWith(matrix.os, 'ubuntu')
with:
use-cross: ${{ matrix.cross }}
command: test
Expand All @@ -246,9 +246,9 @@ jobs:
CLASH_DOCKER_TEST: "true"
RUSTFLAGS: ${{ matrix.rustflags || '--cfg tokio_unstable' }}

- name: Cargo test (on macos without docker)
- name: Cargo test (no docker test on windows-non-arm and macos)
uses: clechasseur/rs-cargo@v2
if: ${{ contains(matrix.os, 'macos') }}
if: ${{ !startsWith(matrix.os, 'ubuntu') && matrix.target != 'aarch64-pc-windows-msvc' }}
with:
use-cross: ${{ matrix.cross }}
command: test
Expand Down

0 comments on commit 8d103bf

Please sign in to comment.