-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (40 loc) · 1.29 KB
/
ros_test.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
name: ROS Test
on:
push:
branches:
- noetic
pull_request:
jobs:
ROS-test:
runs-on: ubuntu-20.04
steps:
- name: Prepare
run: |
mkdir -p ${{github.workspace}}/src
mkdir -p ${{github.workspace}}/devel
- uses: docker/setup-buildx-action@v3
- name: Checkout
uses: actions/checkout@v4
with:
path: src
submodules: true
- name: Build Docker Image
uses: docker/build-push-action@v5
with:
tags: ros_gazebo_gym:noetic
file: .ci/Dockerfile.noetic
push: false
load: true
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Compile ROS package with Catkin Tools
uses: addnab/docker-run-action@v3
with:
image: ros_gazebo_gym:noetic
options: -v ${{github.workspace}}/src:/src/ -v ${{github.workspace}}/devel:/devel/
run: |
rosdep install --from-paths /src --ignore-src --rosdistro noetic -y --simulate # Check if all dependencies were in the Docker File.
apt-get update
rosdep install --from-paths /src --ignore-src --rosdistro noetic -y
catkin config --init --extend /opt/ros/noetic
catkin build --interleave-output --verbose