File tree 2 files changed +35
-1
lines changed
2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Docker Image CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ "main" ]
6
+ pull_request :
7
+ branches : [ "main" ]
8
+
9
+ jobs :
10
+
11
+ build :
12
+
13
+ runs-on : ubuntu-latest
14
+
15
+ steps :
16
+ - name : Checkout
17
+ uses : actions/checkout@v3
18
+ - name : Run the build.sh scripts
19
+ run : |
20
+ # find the build.sh scripts and execute them
21
+ echo "Running all build.sh scripts in repo"
22
+ for f in $(find . -iname 'build.sh')
23
+ do
24
+ $f || exit 1
25
+ done
26
+ echo "Done running build.sh scripts"
Original file line number Diff line number Diff line change 2
2
3
3
This repository provides examples for running robots using Space ROS
4
4
5
- Please refer to the [ dockerfile repo] ( https://github.com/space-ros/docker/tree/main/space_robots ) for running instruction
5
+ Submissions to this repo should include:
6
+ 1 ) A Dockerfile or docker-compose.yaml file for building on top of the ` osrf/space-ros:latest `
7
+ 2 ) A ` build.sh ` script for building the docker image
8
+ - This is required for CI to build the image
9
+ - See example here: https://github.com/space-ros/docker/blob/main/space_robots/build.sh
10
+ 3 ) A ` run.sh ` script for running the demo
11
+ - - See example here: https://github.com/space-ros/docker/blob/main/space_robots/run.sh
12
+
13
+ Please refer to the [ dockerfile repo] ( https://github.com/space-ros/docker/tree/main/space_robots ) for instructions on running the existing demos
You can’t perform that action at this time.
0 commit comments