From 55046d1f5b33c2c969cfc079efecda13bf503915 Mon Sep 17 00:00:00 2001 From: KlausMu Date: Tue, 12 Mar 2024 19:24:08 +0100 Subject: [PATCH] updated actions --- .github/workflows/build-platformio.yml | 12 +++++++-- .github/workflows/build-simulator.yml | 37 -------------------------- 2 files changed, 10 insertions(+), 39 deletions(-) delete mode 100644 .github/workflows/build-simulator.yml diff --git a/.github/workflows/build-platformio.yml b/.github/workflows/build-platformio.yml index bc7aec7..cd57973 100644 --- a/.github/workflows/build-platformio.yml +++ b/.github/workflows/build-platformio.yml @@ -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 diff --git a/.github/workflows/build-simulator.yml b/.github/workflows/build-simulator.yml deleted file mode 100644 index 58eb345..0000000 --- a/.github/workflows/build-simulator.yml +++ /dev/null @@ -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" \ No newline at end of file