Skip to content

Commit

Permalink
test, refactor: skip unsupported tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
xicilion committed Jan 8, 2023
1 parent 75727a8 commit 0f8b328
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Expand Up @@ -48,12 +48,12 @@ jobs:
build_target: android
target_arch: amd64
build_type: release
skip_test: true
skip_test: skip
- os: ubuntu-18.04
build_target: android
target_arch: arm64
build_type: release
skip_test: true
skip_test: skip
- os: windows-2022
target_arch: amd64
build_type: release
Expand All @@ -63,14 +63,14 @@ jobs:
- os: windows-2022
target_arch: arm64
build_type: release
skip_test: true
skip_test: skip
- os: macos-11
target_arch: amd64
build_type: release
- os: macos-11
target_arch: arm64
build_type: release
skip_test: true
skip_test: skip
- os: macos-11
target_arch: amd64
build_type: debug
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:

- name: Test
# only test for release version now, some test cases cannot passed in debug mode
if: ${{ matrix.build_type == 'release' && matrix.skip_test != 'true' }}
if: ${{ matrix.build_type == 'release' && matrix.skip_test != 'skip' }}
shell: bash
run: |
if [[ -z $GIT_TAG && $GIT_BRANCH != "beta" ]]; then
Expand Down

0 comments on commit 0f8b328

Please sign in to comment.