File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Build driver solution
2+ on :
3+ push :
4+
5+ jobs :
6+ build-sensors-combo-driver :
7+ strategy :
8+ matrix :
9+ configuration : [Debug, Release]
10+ platform : [x64]
11+ runs-on : windows-2022
12+ # env:
13+ # Solution_Path: SensorsComboDriver\SensorsComboDriver.sln
14+ steps :
15+ - name : Check out repository code
16+ uses : actions/checkout@v3
17+
18+ - name : Add MSBuild to PATH
19+ uses : microsoft/setup-msbuild@v1.0.2
20+
21+ # msbuild ${{ env.Solution_Path }} -p:Configuration:${{ env.Configuration }} -p:Platform:${{ env.Platform }}
22+ - name : Build solution
23+ run : |
24+ msbuild SensorsComboDriver\SensorsComboDriver.sln -p:Configuration:${{ env.Configuration }} -p:Platform:${{ env.Platform }}
25+ msbuild SimpleDeviceOrientationSensor\SimpleDeviceOrientationSensor.sln -p:Configuration:${{ env.Configuration }} -p:Platform:${{ env.Platform }}
26+ env :
27+ Configuration : ${{ matrix.configuration }}
28+ Platform : ${{ matrix.platform }}
You can’t perform that action at this time.
0 commit comments