From 1f637d26b6e34ff50fcde82ac6b3b1c44cc7fc93 Mon Sep 17 00:00:00 2001 From: Young-Flash Date: Tue, 15 Oct 2024 09:56:23 +0800 Subject: [PATCH] ci: native backend test on windows --- .github/workflows/check.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 8b0bb0a2a..85706829f 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -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