-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (53 loc) · 1.59 KB
/
platformio.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: PlatformIO Build Workflow
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-20.04
env:
CATKIN_WS: /home/runner/work/catkin_ws
steps:
- uses: actions/checkout@v2
- name: Setup ROS
uses: ros-tooling/[email protected]
with:
required-ros-distributions: noetic
- name: Install catkin tool
run: sudo apt-get install python3-catkin-tools
- name: Update pip and install pip package
run: |
pip3 install pip --upgrade
pip3 install pyopenssl --upgrade
pip3 install platformio
- name: Init workspace
run: |
source /opt/ros/noetic/setup.bash
mkdir -p ${CATKIN_WS}/src
ln -s ${GITHUB_WORKSPACE} ${CATKIN_WS}/src/
- name: pre build
run: |
source /opt/ros/noetic/setup.bash
rosdep update
rosdep install -i -y --from-paths ./
- name: build
run: |
source /opt/ros/noetic/setup.bash
cd ${CATKIN_WS}
catkin build
- name: Update ros_lib
run: |
source ${CATKIN_WS}/devel/setup.bash
rm -rf $(rospack find esp_now_ros)/ros_lib
rosrun rosserial_arduino make_libraries.py $(rospack find esp_now_ros)/ros_lib
- name: build sketches esp_now_ros
run: |
source ${CATKIN_WS}/devel/setup.bash
find $(rospack find esp_now_ros)/sketchbooks -maxdepth 1 -type d | while read dir; do
if [ "$dir" != "$(rospack find esp_now_ros)/sketchbooks" ]; then
echo "Building $dir"
pio run -d $dir
fi
done