Skip to content

WIP: Host commands

WIP: Host commands #41

Workflow file for this run

name: Build driver solution
on:
push:
jobs:
build-sensors-combo-driver:
strategy:
matrix:
configuration: [Debug, Release]
platform: [x64]
runs-on: windows-2022
# env:
# Solution_Path: FrameworkSensors\FrameworkSensors.sln
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
# msbuild ${{ env.Solution_Path }} -p:Configuration:${{ env.Configuration }} -p:Platform:${{ env.Platform }}
- name: Build solution
run: |
msbuild FrameworkSensors\FrameworkSensors.sln /property:Configuration=${{ env.Configuration }} /property:Platform=${{ env.Platform }}
env:
Configuration: ${{ matrix.configuration }}
Platform: ${{ matrix.platform }}