Skip to content

Commit c316131

Browse files
authored
Merge pull request #37 from space-ros/add-build-workflow
Add build workflow (fix issue #35)
2 parents 333a1f6 + a1e83cf commit c316131

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

.github/workflows/docker-image.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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"

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,12 @@
22

33
This repository provides examples for running robots using Space ROS
44

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

0 commit comments

Comments
 (0)