include build folder #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Robot Code Checks | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
container: raiderrobotics/container-registry:rr-noetic-base | |
steps: | |
- name: ✔️ Checkout Repository and Submodules | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: 🔨 Build Project | |
run: | | |
/bin/bash -c "source /opt/ros/noetic/setup.bash && catkin_make v5_hal_firmware_build" | |
test: | |
needs: build | |
runs-on: ubuntu-20.04 | |
container: raiderrobotics/container-registry:rr-noetic-base | |
steps: | |
- name: ✔️ Checkout Repository and Submodules | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: 🧪 Execute v5_hal Unit Tests | |
run: | | |
/bin/bash -c "source /opt/ros/noetic/setup.bash && catkin_make run_tests_v5_hal" |