Skip to content

wrong command line args #38

wrong command line args

wrong command line args #38

Workflow file for this run

name: Simulator Build
on: [push]
jobs:
build-ubuntu-x64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Install SDL2
run : sudo apt-get install -y libsdl2-dev
- name: Build PlatformIO Project
working-directory: ./Platformio
run: pio run --environment x64sim
# build-x64:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v3
# - name: Add msbuild to PATH
# uses: microsoft/[email protected]
# 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/[email protected]
# with:
# msbuild-architecture: x86
# - name: Build
# working-directory: ./LVGL Simulator
# run: MSBuild.exe ./LVGL.Simulator.sln -target:Build /p:Platform="x86"