Integration Build #53
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: Integration Build | |
| on: | |
| push: | |
| paths-ignore: | |
| - '.editorconfig' | |
| - '**.md' | |
| - '.github/**' | |
| - 'Documentation/**' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build/Run Nuke | |
| runs-on: windows-2022 # windows-latest would require updating Nuke to a newer version | |
| env: | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
| steps: | |
| - name: Cancel duplicate runs | |
| uses: fkirc/skip-duplicate-actions@v5 | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup MSBuild | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Add WASM workload | |
| run: dotnet workload install wasm-tools-net8 | |
| - name: Run build project | |
| run: dotnet run --project ./Build/Build.csproj -- --target IntegrationBuild | |
| - name: Notify Slack | |
| if: always() | |
| uses: act10ns/slack@v2 | |
| with: | |
| status: ${{ job.status }} |