Fix AOT type signatures and error handling (#8850) #39
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: Build | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| build: | |
| name: build-${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [windows-latest, macos-latest, ubuntu-24.04] | |
| fail-fast: false | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Setup .NET Core SDK | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - name: Setup DotNet on linux/Windows | |
| if: runner.environment == 'github-hosted' && (runner.os == 'Linux' || runner.os == 'windows') | |
| run: | | |
| dotnet workload install android | |
| - name: Setup DotNet on MacOS | |
| if: runner.environment == 'github-hosted' && runner.os == 'macos' | |
| run: | | |
| dotnet workload install android macos ios | |
| - name: Add msbuild to PATH | |
| if: runner.os == 'Windows' | |
| uses: microsoft/setup-msbuild@v1.0.2 | |
| - name: Setup Premake5 | |
| uses: abel0b/setup-premake@v2.4 | |
| with: | |
| version: "5.0.0-beta2" | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'microsoft' | |
| java-version: '17' | |
| - name: Install Vulkan SDK | |
| uses: humbletim/setup-vulkan-sdk@523828e49cd4afabce369c39c7ee6543a2b7a735 | |
| with: | |
| vulkan-query-version: 1.3.283.0 | |
| vulkan-use-cache: true | |
| - name: Disable Annotations | |
| run: echo "::remove-matcher owner=csc::" | |
| - name: install wine64 on linux | |
| if: runner.environment == 'github-hosted' && runner.os == 'Linux' | |
| run: | | |
| sudo apt install p7zip-full curl | |
| sudo dpkg --add-architecture i386 | |
| sudo mkdir -pm755 /etc/apt/keyrings | |
| sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key | |
| sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/noble/winehq-noble.sources | |
| sudo apt update && sudo apt install --install-recommends winehq-stable | |
| wget -qO- https://monogame.net/downloads/net9_mgfxc_wine_setup.sh | bash | |
| - name: install wine64 on MacOS | |
| if: runner.environment == 'github-hosted' && runner.os == 'macos' | |
| run: | | |
| brew install wine-stable p7zip | |
| sudo mkdir -p /usr/local/lib | |
| ls -n /Applications/ | grep Xcode* | |
| sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer | |
| wget -qO- https://monogame.net/downloads/net9_mgfxc_wine_setup.sh | bash | |
| - name: Install Arial Font | |
| if: runner.environment == 'github-hosted' && runner.os == 'Linux' | |
| run: | | |
| echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | sudo debconf-set-selections | |
| sudo apt install -y ttf-mscorefonts-installer | |
| sudo fc-cache | |
| fc-match Arial | |
| - name: Dotnet Restore Templates | |
| if: runner.environment == 'github-hosted' && runner.os == 'Windows' | |
| run: | | |
| dotnet restore Templates/MonoGame.Templates.VSExtension | |
| - name: Build | |
| run: | | |
| dotnet run --project build/Build.csproj -- --target=Default | |
| - name: Run Tools Tests | |
| run: | | |
| if [ "$RUNNER_OS" == "Windows" ]; then | |
| dotnet test Tools/MonoGame.Tools.Tests/MonoGame.Tools.Tests.csproj --blame-hang-timeout 5m -c Release | |
| elif [ "$RUNNER_OS" == "Linux" ]; then | |
| MGFXC_WINE_PATH=/home/runner/.winemonogame dotnet test Tools/MonoGame.Tools.Tests/MonoGame.Tools.Tests.csproj --blame-hang-timeout 5m -c Release --filter="TestCategory!=Audio" | |
| else | |
| MGFXC_WINE_PATH=/Users/runner/.winemonogame dotnet test Tools/MonoGame.Tools.Tests/MonoGame.Tools.Tests.csproj --blame-hang-timeout 5m -c Release --filter="TestCategory!=Audio" | |
| fi | |
| env: | |
| CI: true | |
| shell: bash | |
| - name: Expose GitHub Runtime | |
| uses: crazy-max/ghaction-github-runtime@v3 | |
| - name: Upload Artifacts | |
| run: dotnet run --project build/Build.csproj -- --target=UploadArtifacts | |
| env: | |
| ACTIONS_RUNTIME_TOKEN: ${{ env.ACTIONS_RUNTIME_TOKEN }} | |
| ACTIONS_RUNTIME_URL: "${{ env.ACTIONS_RUNTIME_URL }}" | |
| deploy: | |
| name: Deploy | |
| needs: [ build, tests ] | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event_name == 'push' }} | |
| permissions: | |
| packages: write | |
| contents: write | |
| steps: | |
| - name: Clone Repository | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - name: Expose GitHub Runtime | |
| uses: crazy-max/ghaction-github-runtime@v3 | |
| - name: Push Nugets | |
| run: dotnet run --project build/Build.csproj -- --target=Deploy | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | |
| MARKETPLACE_PAT: ${{ secrets.MARKETPLACE_PAT }} | |
| - name: Make a Release | |
| if: github.ref_type == 'tag' | |
| uses: ncipollo/release-action@v1 | |
| with: | |
| name: 'MonoGame ${{ github.ref_name }}' | |
| tag: ${{ github.ref_name }} | |
| allowUpdates: true | |
| removeArtifacts: true | |
| artifacts: "nugets/*.nupkg;vsix/MonoGame.Templates.VSExtension.vsix" | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| tests: | |
| name: tests-${{ matrix.os }} | |
| needs: [ build ] | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| include: | |
| - os: windows | |
| platform: windows | |
| shell: cmd | |
| - os: macos | |
| platform: macos | |
| shell: bash | |
| - os: ubuntu-24.04 | |
| platform: linux | |
| shell: bash | |
| filter: --where="Category != Audio" | |
| # - os: linux | |
| # platform: linux | |
| fail-fast: false | |
| defaults: | |
| run: | |
| shell: ${{ matrix.shell }} | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Setup .NET Core SDK | |
| if: runner.environment == 'github-hosted' | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - name: install wine64 on linux | |
| if: runner.os == 'Linux' && runner.environment == 'github-hosted' | |
| run: | | |
| sudo apt install p7zip-full curl | |
| sudo dpkg --add-architecture i386 | |
| sudo mkdir -pm755 /etc/apt/keyrings | |
| sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key | |
| sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/noble/winehq-noble.sources | |
| sudo apt update && sudo apt install --install-recommends winehq-stable | |
| - name: Install Arial Font | |
| if: runner.os == 'Linux' && runner.environment == 'github-hosted' | |
| run: | | |
| echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | sudo debconf-set-selections | |
| sudo apt install -y ttf-mscorefonts-installer | |
| sudo fc-cache | |
| fc-match Arial | |
| - name: Setup Wine | |
| if: runner.os != 'Windows' && runner.environment == 'github-hosted' | |
| run: wget -qO- https://monogame.net/downloads/net9_mgfxc_wine_setup.sh | bash | |
| - name: Download Nuget | |
| uses: actions/download-artifact@v4 | |
| with: | |
| path: Artifacts/NuGet | |
| - name: Download tests-desktopgl-${{ matrix.platform }} | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: tests-desktopgl-${{ matrix.platform }} | |
| path: tests-desktopgl | |
| - name: Download tests-windowsdx-${{ matrix.platform }} | |
| if: runner.os == 'Windows' | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: tests-windowsdx-${{ matrix.platform }} | |
| path: tests-windowsdx | |
| # Run the DirectX tests in two steps: first the audio, then the rest. | |
| # This is because the audio tests has some incompatibilities within the runner with ContentManagerTests. | |
| - name: Run DirectX Audio Tests | |
| if: runner.os == 'Windows' | |
| run: dotnet test --filter Category=Audio MonoGame.Tests.dll | |
| env: | |
| CI: true | |
| working-directory: tests-windowsdx | |
| - name: Run DirectX All Tests Except Audio | |
| if: runner.os == 'Windows' | |
| run: dotnet test --filter Category!=Audio MonoGame.Tests.dll | |
| env: | |
| CI: true | |
| working-directory: tests-windowsdx | |
| # Run the DesktopGL tests on all platforms using NUnitLite runner not dotnet test | |
| # We have to run this is bits because the tests crash if too many are run in one go? | |
| - name: Run Framework Tests | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Framework ${{matrix.filter}} | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Audio Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Audio | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Input Tests | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Input | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Visual Tests | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Visual | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Game Tests | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --where="Category = GameTest" | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.BlendStateTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.BlendStateTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.DepthStencilStateTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.DepthStencilStateTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.EffectTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.EffectTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.GraphicsAdapterTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.GraphicsAdapterTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| # This test hangs on MacOS? | |
| # - name: Run Graphics.GraphicsDeviceTest Tests | |
| # if: runner.environment != 'github-hosted' | |
| # run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.GraphicsDeviceTest | |
| # env: | |
| # CI: true | |
| # working-directory: tests-desktopgl | |
| - name: Run Graphics.IndexBufferTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.IndexBufferTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.MiscellaneousTests Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.MiscellaneousTests | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.ModelTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.ModelTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.OcclusionQueryTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.OcclusionQueryTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.RasterizerStateTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.RasterizerStateTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.RenderTarget2DTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.RenderTarget2DTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.RenderTargetCubeTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.RenderTargetCubeTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.SamplerStateTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.SamplerStateTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.ScissorRectangleTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.ScissorRectangleTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.ShaderTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.ShaderTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.SpriteBatchTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.SpriteBatchTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.SpriteFontTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.SpriteFontTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.Texture2DNonVisualTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.Texture2DNonVisualTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.Texture2DTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.Texture2DTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.Texture3DNonVisualTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.Texture3DNonVisualTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.Texture3DTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.Texture3DTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.TextureCubeTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.TextureCubeTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.VertexBufferTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.VertexBufferTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl | |
| - name: Run Graphics.ViewportTest Tests | |
| if: runner.environment != 'github-hosted' | |
| run: dotnet MonoGame.Tests.dll --timeout=300000 --test MonoGame.Tests.Graphics.ViewportTest | |
| env: | |
| CI: true | |
| working-directory: tests-desktopgl |