updated actions
This commit is contained in:
parent
4ab579bbea
commit
55046d1f5b
2 changed files with 10 additions and 39 deletions
12
.github/workflows/build-platformio.yml
vendored
12
.github/workflows/build-platformio.yml
vendored
|
@ -20,6 +20,14 @@ jobs:
|
||||||
- name: Install PlatformIO Core
|
- name: Install PlatformIO Core
|
||||||
run: pip install --upgrade platformio
|
run: pip install --upgrade platformio
|
||||||
|
|
||||||
- name: Build PlatformIO Project
|
- name: Build PlatformIO env:ESP32
|
||||||
working-directory: ./Platformio
|
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
|
||||||
|
|
37
.github/workflows/build-simulator.yml
vendored
37
.github/workflows/build-simulator.yml
vendored
|
@ -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"
|
|
Loading…
Reference in a new issue