Create Rebase Action (#34) #167
This file contains 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: | |
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: | |
- platform: | |
name: macOS | |
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 |