Skip to content

Commit

Permalink
Merge pull request #6 from steinwurf/platformio-fix
Browse files Browse the repository at this point in the history
platformio fix
  • Loading branch information
jpihl authored Apr 17, 2024
2 parents 9ed1084 + 8a9df85 commit 13d3845
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 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 pkg install -g -l 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
2 changes: 1 addition & 1 deletion NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ every change, see the Git log.

Latest
------
* tbd
* Patch: Fix platformio build.

2.0.0
-----
Expand Down

0 comments on commit 13d3845

Please sign in to comment.