Skip to content

Commit

Permalink
ci: native backend test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Young-Flash committed Oct 15, 2024
1 parent 25f3c2d commit 1f637d2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,19 @@ jobs:
moon test --target all
moon test --release --target all
- name: moon test in native backend (unix)
if: ${{ matrix.os != 'windows-latest' }}
run: |
ulimit -s 8176
moon test --target native
moon test --target native --release
- name: moon test in native backend (windows)
if: ${{ matrix.os == 'windows-latest' }}
run: |
# --release not support for windows
moon test --target native
- name: moon bundle
run: moon bundle --all

Expand Down

0 comments on commit 1f637d2

Please sign in to comment.