diff --git a/.github/workflows/native-unit-test.yml b/.github/workflows/native-unit-test.yml index 6a80405e581..2d4ed12e49f 100644 --- a/.github/workflows/native-unit-test.yml +++ b/.github/workflows/native-unit-test.yml @@ -46,8 +46,10 @@ jobs: which cmake cmake --version cmake -B tests/unit-test/build -S tests/unit-test - cmake --build tests/unit-test/build --config Release -j${cpus} - ./tests/unit-test/build/src/Release/CocosTest + cd tests/unit-test/build + # cmake --build tests/unit-test/build --config Release -j${cpus} + xcodebuild -project CocosTest.xcodeproj -scheme "CocosTest" -jobs ${cpus} -arch arm64 -configuration Release build CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO + ./src/Release/CocosTest #### TODO(PatriceJiang): model split # - name: Run Module Tests