updated actions

This commit is contained in:
KlausMu 2024-03-12 19:24:08 +01:00
parent 4ab579bbea
commit 55046d1f5b
2 changed files with 10 additions and 39 deletions

View File

@ -20,6 +20,14 @@ jobs:
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Build PlatformIO Project
- name: Build PlatformIO env:ESP32
working-directory: ./Platformio
run: pio run
run: pio run -e esp32
- name: Build PlatformIO env:windows_linux_64bit
working-directory: ./Platformio
run: pio run -e windows_linux_64bit
- name: Build PlatformIO env:windows_linux_32bit
working-directory: ./Platformio
run: pio run -e windows_linux_32bit

View File

@ -1,37 +0,0 @@
name: Simulator Build
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"