Skip to content

Commit

Permalink
Added CI jobs for examples
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyBlightLeeds committed Mar 18, 2024
1 parent c89e300 commit 1f51ff6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,25 @@ jobs:
export PATH=$PATH:~/.platformio/penv/bin
cd repo/ci
pio run -e ${{ matrix.platform }}
micro_ros_platformio_examples:
runs-on: ubuntu-22.04
container: ubuntu:22.04
steps:
- uses: actions/checkout@v3
with:
path: repo
- name: Install environment
uses: ./repo/.github/actions/platformio-env
- name: Build 1
shell: bash
run: |
export PATH=$PATH:~/.platformio/penv/bin
cd repo/examples/micro-ros_publisher
pio run -e teensy41
- name: Build 2
shell: bash
run: |
export PATH=$PATH:~/.platformio/penv/bin
cd repo/examples/micro-ros_subscriber_wifi
pio run -e esp32cam

0 comments on commit 1f51ff6

Please sign in to comment.