mirror of
https://github.com/embedd-actions/platformio-ci.git
synced 2024-12-26 00:42:16 +03:00
commit
b29a77d35a
@ -9,3 +9,9 @@ RUN apt-get update && \
|
|||||||
&& \
|
&& \
|
||||||
rm -rf /var/cache/apt && \
|
rm -rf /var/cache/apt && \
|
||||||
pip3 install platformio --break-system-packages
|
pip3 install platformio --break-system-packages
|
||||||
|
|
||||||
|
ADD entrypoint.sh /entrypoint.sh
|
||||||
|
|
||||||
|
RUN chmod +x /entrypoint.sh
|
||||||
|
|
||||||
|
ENTRYPOINT [ "/entrypoint.sh" ]
|
||||||
|
@ -14,6 +14,6 @@ jobs:
|
|||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
uses: embedd-actions/platformio-ci@v1
|
uses: embedd-actions/platformio-ci@v2
|
||||||
|
|
||||||
```
|
```
|
||||||
|
10
action.yml
10
action.yml
@ -1,9 +1,13 @@
|
|||||||
name: 'Platformio build'
|
name: 'Platformio build'
|
||||||
description: 'Building platformio projects'
|
description: 'Building platformio projects'
|
||||||
|
inputs:
|
||||||
|
command:
|
||||||
|
description: 'Command'
|
||||||
|
required: true
|
||||||
|
default: pio run
|
||||||
runs:
|
runs:
|
||||||
using: 'docker'
|
using: 'docker'
|
||||||
image: 'docker://sergeyladanov/platformio:v1'
|
image: 'docker://sergeyladanov/platformio:v2'
|
||||||
args:
|
args:
|
||||||
- pio
|
- ${{ inputs.command }}
|
||||||
- run
|
|
||||||
|
|
||||||
|
3
entrypoint.sh
Normal file
3
entrypoint.sh
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
exec $@
|
Loading…
Reference in New Issue
Block a user