Skip to content

Add some more complex testing scenarios #153

Add some more complex testing scenarios

Add some more complex testing scenarios #153

Workflow file for this run

name: Build
on:
pull_request:
push:
branches: [ main, 'releases/**' ]
release:
types: [ published ]
jobs:
build:
strategy:
fail-fast: false
matrix:
platform:
- name: Windows
os: windows-latest
- name: macOS
os: macos-14
configuration:
- Debug
- Release
# Tries to AOT the test infrastructure assemblies which is not supported
exclude:
- name: macOS

Check failure on line 26 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 26, Col: 13): Matrix exclude key 'name' does not match any key within the matrix
configuration: Release
name: ${{ matrix.platform.name }} (${{ matrix.configuration }})
runs-on: ${{ matrix.platform.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Required Tools
uses: ./.github/workflows/setup-tools
- name: Build
run: dotnet build DeviceRunners.sln --configuration ${{ matrix.configuration }} /bl:./artifacts/logs/msbuild-build.binlog
- name: Upload Logs
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: Logs - ${{ matrix.platform.name }} (${{ matrix.configuration }})
path: ./artifacts/logs