Fix domain reload freeze during Play mode transitions caused by blocking log storage locks #650
Workflow file for this run
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: test-pull-request | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [main, dev] | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build-and-zip-mcp-server: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "9.0.x" | |
| - name: Make build script executable | |
| run: chmod +x ./Unity-MCP-Server/build-all.sh | |
| - name: Build executables for all platforms | |
| shell: bash {0} | |
| run: cd Unity-MCP-Server && ./build-all.sh Release | |
| # --- UNITY TESTS --- | |
| # ------------------- | |
| # --- EDIT MODE --- | |
| test-unity-2022-3-62f3-editmode: | |
| needs: [build-and-zip-mcp-server] | |
| uses: ./.github/workflows/test_unity_plugin.yml | |
| with: | |
| projectPath: "./Unity-Tests/2022.3.62f3" | |
| unityVersion: "2022.3.62f3" | |
| testMode: "editmode" | |
| secrets: inherit | |
| test-unity-2023-2-22f1-editmode: | |
| needs: [build-and-zip-mcp-server] | |
| uses: ./.github/workflows/test_unity_plugin.yml | |
| with: | |
| projectPath: "./Unity-Tests/2023.2.22f1" | |
| unityVersion: "2023.2.22f1" | |
| testMode: "editmode" | |
| secrets: inherit | |
| test-unity-6000-3-1f1-editmode: | |
| needs: [build-and-zip-mcp-server] | |
| uses: ./.github/workflows/test_unity_plugin.yml | |
| with: | |
| projectPath: "./Unity-Tests/6000.3.1f1" | |
| unityVersion: "6000.3.1f1" | |
| testMode: "editmode" | |
| secrets: inherit | |
| # --- PLAY MODE --- | |
| # test-unity-2022-3-62f3-playmode: | |
| # needs: [build-and-zip-mcp-server] | |
| # uses: ./.github/workflows/test_unity_plugin.yml | |
| # with: | |
| # projectPath: './Unity-Tests/2022.3.62f3' | |
| # unityVersion: '2022.3.62f3' | |
| # testMode: 'playmode' | |
| # secrets: inherit | |
| # test-unity-2023-2-22f1-playmode: | |
| # needs: [build-and-zip-mcp-server] | |
| # uses: ./.github/workflows/test_unity_plugin.yml | |
| # with: | |
| # projectPath: './Unity-Tests/2023.2.22f1' | |
| # unityVersion: '2023.2.22f1' | |
| # testMode: 'playmode' | |
| # secrets: inherit | |
| # test-unity-6000-3-1f1-playmode: | |
| # needs: [build-and-zip-mcp-server] | |
| # uses: ./.github/workflows/test_unity_plugin.yml | |
| # with: | |
| # projectPath: './Unity-Tests/6000.3.1f1' | |
| # unityVersion: '6000.3.1f1' | |
| # testMode: 'playmode' | |
| # secrets: inherit | |
| # --- STANDALONE --- | |
| test-unity-2022-3-62f3-standalone: | |
| needs: [build-and-zip-mcp-server] | |
| uses: ./.github/workflows/test_unity_plugin.yml | |
| with: | |
| projectPath: "./Unity-Tests/2022.3.62f3" | |
| unityVersion: "2022.3.62f3" | |
| testMode: "standalone" | |
| secrets: inherit | |
| test-unity-2023-2-22f1-standalone: | |
| needs: [build-and-zip-mcp-server] | |
| uses: ./.github/workflows/test_unity_plugin.yml | |
| with: | |
| projectPath: "./Unity-Tests/2023.2.22f1" | |
| unityVersion: "2023.2.22f1" | |
| testMode: "standalone" | |
| secrets: inherit | |
| test-unity-6000-3-1f1-standalone: | |
| needs: [build-and-zip-mcp-server] | |
| uses: ./.github/workflows/test_unity_plugin.yml | |
| with: | |
| projectPath: "./Unity-Tests/6000.3.1f1" | |
| unityVersion: "6000.3.1f1" | |
| testMode: "standalone" | |
| secrets: inherit | |
| # ------------------- |