修改写法,让jsEnv.Disposed前释放wrapRender,否则quickjs会触发Assertion `list_empty(&… #1235
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: unity unittest | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - unity/Assets/** | |
| - unity/test/** | |
| - unity/native_src/** | |
| - unity/cli/** | |
| - unreal/Puerts/Source/JsEnv/Private/V8InspectorImpl.cpp | |
| - unreal/Puerts/Source/JsEnv/Private/V8InspectorImpl.h | |
| - unreal/Puerts/Source/JsEnv/Private/WebSocketImpl.cpp | |
| - unreal/Puerts/Source/JsEnv/Private/PromiseRejectCallback.hpp | |
| - .github/workflows/unity_unittest.yml | |
| # branches-ignore: | |
| # - 'unity-3.0.0' | |
| env: | |
| RUNID: 613573412 | |
| jobs: | |
| unittest-win-unity: | |
| runs-on: windows-2019 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Unity | |
| uses: ./.github/workflows/composites/unity-setup/ | |
| with: | |
| os: 'win' | |
| version: '2021.3.16f1' | |
| cachekey: '2021' | |
| install_path: C:/UNITY | |
| unity_modules: windows-il2cpp | |
| UNITY_USERNAME: ${{ secrets.UNITY_USERNAME }} | |
| UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
| UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }} | |
| - name: UnitTest | |
| run: | | |
| cd unity | |
| npm i | |
| cd test/unity | |
| node ../../cli unity-test --unity C:/UNITY/2021.3.16f1/Editor/Unity.exe | |
| - name: TestResult | |
| if: always() | |
| shell: bash | |
| run: | | |
| cd unity/test/unity | |
| echo "testresult in v1" | |
| cat log1.txt | grep "Failed\|Passed" | |
| echo "testresult in v2(reflection)" | |
| cat log2.txt | grep "Failed\|Passed" | |
| echo "testresult in v2" | |
| cat log3.txt | grep "Failed\|Passed" | |
| echo "testresult in v2(quickjs)" | |
| cat log4.txt | grep "Failed\|Passed" | |
| echo "testresult in v2(mult)" | |
| cat log5.txt | grep "Failed\|Passed" | |
| # unittest-osx-unity: | |
| # runs-on: macos-latest | |
| # steps: | |
| # - uses: actions/checkout@v3 | |
| # - name: Setup Unity | |
| # uses: ./.github/workflows/composites/unity-setup/ | |
| # with: | |
| # os: 'osx' | |
| # version: '2021.3.16f1' | |
| # cachekey: '2021' | |
| # install_path: /Applications/UNITY | |
| # unity_modules: mac-il2cpp | |
| # architecture: x86_64 | |
| # UNITY_USERNAME: ${{ secrets.UNITY_USERNAME }} | |
| # UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }} | |
| # UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }} | |
| # - name: UnitTest | |
| # run: | | |
| # cd unity | |
| # npm i | |
| # cd test/unity | |
| # node ../../cli unity-test --unity /Applications/UNITY/2021.3.16f1/Unity.app/Contents/MacOS/Unity | |
| # - name: TestResult | |
| # if: always() | |
| # shell: bash | |
| # run: | | |
| # cd unity/test/unity | |
| # echo "testresult in v1" | |
| # cat log1.txt | grep "Failed\|Passed" | |
| # echo "testresult in v2" | |
| # cat log2.txt | grep "Failed\|Passed" | |
| unittest-win-dotnet: | |
| runs-on: windows-2019 | |
| steps: | |
| - uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: '6.x.x' | |
| - uses: actions/checkout@v3 | |
| - name: UnitTest-v8 | |
| run: | | |
| cd unity | |
| npm i | |
| cd test/dotnet | |
| node ../../cli dotnet-test v8_9.4 | |
| - name: UnitTest-v8-10-6 | |
| run: | | |
| cd unity | |
| npm i | |
| cd test/dotnet | |
| node ../../cli dotnet-test v8_10.6.194 | |
| - name: UnitTest-nodejs | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test nodejs_16 | |
| - name: UnitTest-quickjs | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test quickjs | |
| - name: UnitTest-mult-v8 | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test mult | |
| - name: UnitTest-mult-v8-qjs | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test mult -sq | |
| - name: UnitTest-v8-ts | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test v8_9.4 -ts | |
| unittest-osx-dotnet: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: '6.x.x' | |
| - uses: actions/checkout@v3 | |
| - name: UnitTest-v8 | |
| run: | | |
| cd unity | |
| npm i | |
| cd test/dotnet | |
| node ../../cli dotnet-test v8_9.4 | |
| - name: UnitTest-v8-10-6 | |
| run: | | |
| cd unity | |
| npm i | |
| cd test/dotnet | |
| node ../../cli dotnet-test v8_10.6.194 | |
| - name: UnitTest-nodejs | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test nodejs_16 | |
| - name: UnitTest-quickjs | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test quickjs | |
| - name: UnitTest-mult-v8 | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test mult | |
| - name: UnitTest-mult-v8-qjs | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test mult -sq | |
| - name: UnitTest-v8-ts | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test v8_9.4 -ts | |
| unittest-linux-dotnet: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: '6.x.x' | |
| - uses: actions/checkout@v3 | |
| - name: Install LibC++ | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install clang | |
| sudo apt-get install build-essential | |
| sudo apt-get install libc++-dev | |
| sudo apt-get install libc++abi-dev | |
| - name: UnitTest-v8 | |
| run: | | |
| cd unity | |
| npm i | |
| cd test/dotnet | |
| node ../../cli dotnet-test v8_9.4 | |
| - name: UnitTest-v8-10-6 | |
| run: | | |
| cd unity | |
| npm i | |
| cd test/dotnet | |
| node ../../cli dotnet-test v8_10.6.194 | |
| - name: UnitTest-nodejs | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test nodejs_16 | |
| - name: UnitTest-quickjs | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test quickjs | |
| - name: UnitTest-mult-v8 | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test mult | |
| - name: UnitTest-mult-v8-qjs | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test mult -sq | |
| - name: UnitTest-v8-ts | |
| run: | | |
| cd unity/test/dotnet | |
| node ../../cli dotnet-test v8_9.4 -ts |