2023-07-28 07:19:26 -04:00
|
|
|
name: Simulator Build
|
2023-07-28 06:35:16 -04:00
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-x64:
|
|
|
|
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Add msbuild to PATH
|
|
|
|
uses: microsoft/setup-msbuild@v1.1
|
|
|
|
with:
|
|
|
|
msbuild-architecture: x64
|
|
|
|
|
|
|
|
# You can test your matrix by printing the current dotnet version
|
|
|
|
- name: Build
|
|
|
|
working-directory: ./LVGL Simulator
|
|
|
|
run: MSBuild.exe ./LVGL.Simulator.sln -target:Build /p:Platform="x64"
|
|
|
|
|
|
|
|
build-x86:
|
|
|
|
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Add msbuild to PATH
|
|
|
|
uses: microsoft/setup-msbuild@v1.1
|
|
|
|
with:
|
|
|
|
msbuild-architecture: x86
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
working-directory: ./LVGL Simulator
|
|
|
|
run: MSBuild.exe ./LVGL.Simulator.sln -target:Build /p:Platform="x86"
|