Skip to content

Commit

Permalink
platformio fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jpihl committed Apr 17, 2024
1 parent 9ed1084 commit 5bfd5f2
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/platformio.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
name: PlatformIO
'on':
"on":
workflow_dispatch:
inputs:
extra_resolve_options:
description: Extra Resolve Options
required: false
schedule:
- cron: 0 1 * * *
- cron: 0 1 * * *
push:
branches:
- master
- master
pull_request:
jobs:
platformio:
name: PlatformIO Build
runs-on:
- self-hosted
- docker
- builder
- self-hosted
- docker
- builder
container:
image: ghcr.io/steinwurf/platformio:1.0.0
image: ghcr.io/steinwurf/platformio:2.0.0
options: --user 0:0
volumes:
- /home/buildbot/.ssh:/root/.ssh
- /home/buildbot/.ssh:/root/.ssh
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Install Library with PlatformIO
run: pio lib -g install file://.
- name: Build example
run: pio ci --board=esp32dev examples/platform_io_example.ino
- name: Checkout source code
uses: actions/checkout@v2
- name: Install Library with PlatformIO
run: pio lib -g install file://.
- name: Build example
run: pio ci --board=esp32dev examples/platform_io_example.ino
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true

0 comments on commit 5bfd5f2

Please sign in to comment.