updated actions
This commit is contained in:
parent
e2203ebd7d
commit
268d5e8700
1 changed files with 5 additions and 7 deletions
12
.github/workflows/build-platformio.yml
vendored
12
.github/workflows/build-platformio.yml
vendored
|
@ -1,6 +1,6 @@
|
|||
name: ESP32 Build
|
||||
name: ESP32 and simulator build (64bit) on Ubuntu
|
||||
|
||||
on: [push]
|
||||
on: [push,workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -19,6 +19,8 @@ jobs:
|
|||
python-version: "3.9"
|
||||
- name: Install PlatformIO Core
|
||||
run: pip install --upgrade platformio
|
||||
- name: Install SDL2
|
||||
run: sudo apt install -y libsdl2-dev
|
||||
|
||||
- name: Build PlatformIO env:ESP32
|
||||
working-directory: ./Platformio
|
||||
|
@ -26,8 +28,4 @@ jobs:
|
|||
|
||||
- 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
|
||||
run: pio run -e windows_linux_64bit
|
Loading…
Reference in a new issue