Skip to content

Commit

Permalink
Merge pull request #1 from arcadien/chore/workflow
Browse files Browse the repository at this point in the history
Create Github workflow
  • Loading branch information
arcadien authored Oct 16, 2023
2 parents 6f085db + 721d112 commit c65ba99
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: PlatformIO CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install PlatformIO Core
run: pip install --upgrade platformio

- name: Test project in native environment
run: pio test -e native

- name: Build console application
run: pio run -e native

- name: Build 'target' cross application
run: pio run -e target

- name: Build 'gun' cross application
run: pio run -e gun

- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: consoleApp
path: ./.pio/build/native/program

- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: target.hex
path: .pio/build/target/firmware.hex

- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: gun.hex
path: .pio/build/gun/firmware.hex

0 comments on commit c65ba99

Please sign in to comment.