From d10a7f24820fd385fe6638f3847fc14e326ce168 Mon Sep 17 00:00:00 2001 From: fvanroie <15969459+fvanroie@users.noreply.github.com> Date: Wed, 17 Nov 2021 05:20:02 +0100 Subject: [PATCH] update linux_build --- .github/workflows/build.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b2ce4f17..66c5aaff 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -3,13 +3,13 @@ name: Build branch on: push: paths-ignore: - - '**.md' + - "**.md" workflow_dispatch: paths-ignore: - - '**.md' + - "**.md" jobs: - build_esp32: + esp32: runs-on: ubuntu-latest strategy: @@ -46,7 +46,7 @@ jobs: steps: - uses: actions/checkout@v2 with: - submodules: 'true' + submodules: "true" - name: Cache pip uses: actions/cache@v2 with: @@ -100,16 +100,16 @@ jobs: # hub release create "${assets[@]}" -m "$tag_name" "$tag_name" # env: # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - linux_build: + linux: runs-on: ubuntu-latest steps: - name: Enable Linux platform from platformio_override.ini run: | - sed -i 's/; user_setups\/linux/user_setups\/linux/g' platformio_override.ini + sed 's/; user_setups\/linux/user_setups\/linux/g' platformio_override-template.ini > 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 \ No newline at end of file + run: pio run -e linux_sdl_64bits