Skip to content

Commit

Permalink
build, refactor: skip tests for certain platforms in build workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
xicilion committed Feb 6, 2024
1 parent 7175209 commit a12a410
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ jobs:
- os: ubuntu-20.04
arch: ppc64
type: debug
test: skip
- os: ubuntu-20.04
arch: riscv64
type: release
Expand All @@ -77,6 +78,7 @@ jobs:
- os: ubuntu-20.04
arch: loong64
type: debug
test: skip
- os: ubuntu-20.04
arch: loong64ow
type: release
Expand All @@ -99,18 +101,22 @@ jobs:
target: android
arch: x64
type: release
test: skip
- os: ubuntu-20.04
target: android
arch: ia32
type: release
test: skip
- os: ubuntu-20.04
target: android
arch: arm64
type: release
test: skip
- os: ubuntu-20.04
target: android
arch: arm
type: release
test: skip
- os: windows-2022
arch: x64
type: release
Expand All @@ -126,9 +132,11 @@ jobs:
- os: windows-2022
arch: arm64
type: release
test: skip
- os: windows-2022
arch: arm64
type: debug
test: skip
- os: macos-14
arch: x64
type: release
Expand All @@ -145,10 +153,12 @@ jobs:
target: iphone
arch: arm64
type: release
test: skip
- os: macos-14
target: iphone
arch: x64
type: release
test: skip

steps:
- name: Check out Git repository
Expand Down Expand Up @@ -180,5 +190,6 @@ jobs:
overwrite: true

- name: Test
if: ${{ matrix.test != 'skip' }}
shell: bash
run: . ./.github/workflows/test.sh

0 comments on commit a12a410

Please sign in to comment.