Skip to content

Commit

Permalink
Move Nav2 build to a separate workflow job
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhansenbot committed Aug 26, 2023
1 parent aa146b9 commit 3f3de06
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,15 @@ jobs:
cache-to: type=gha,mode=max
no-cache: false
outputs: type=docker,dest=/tmp/moveit2.tar
- name: Build nav2 image
- name: Build space robots demo image
run: |
docker load --input /tmp/moveit2.tar
docker images
cd space_robots && ./build.sh
space_nav2:
runs-on: ubuntu-20.04
steps:
- name: Build space_nav2 image
uses: docker/build-push-action@v2
with:
context: navigation2
Expand All @@ -43,8 +51,3 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max
no-cache: false
- name: Build space robots demo image
run: |
docker load --input /tmp/moveit2.tar
docker images
cd space_robots && ./build.sh

0 comments on commit 3f3de06

Please sign in to comment.