Update buildscript

This commit is contained in:
fvanroie 2021-11-17 05:13:50 +01:00
parent 64923e5d82
commit 5a15e09df6
2 changed files with 10 additions and 3 deletions

View File

@ -100,3 +100,13 @@ jobs:
# hub release create "${assets[@]}" -m "$tag_name" "$tag_name"
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Enable Linux platform from platformio_override.ini
run: |
sed -i 's/; user_setups\/linux/user_setups\/linux/g' platformio_override.ini
mkdir -p .pio/libdeps/linux_sdl_64bits/paho/src
- name: Install SDL2 library
run: |
sudo apt-get update
sudo apt-get install libsdl2-dev
- name: Run PlatformIO
run: pio run -e linux_sdl_64bits

View File

@ -1,9 +1,6 @@
name: Build branch
on:
push:
paths-ignore:
- '**.md'
workflow_dispatch:
paths-ignore:
- '**.md'