-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
126 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
name: moma CI | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
env: | ||
# Use docker.io for Docker Hub if empty | ||
REGISTRY: ghcr.io | ||
# github.repository as <account>/<repo> | ||
IMAGE_NAME: ${{ github.repository }} | ||
CATKIN_WS_PATH: moma_ws | ||
|
||
jobs: | ||
build-dev: | ||
name: Build dev docker image | ||
runs-on: ubuntu-latest | ||
outputs: | ||
docker_image_name: ${{ steps.meta.outputs.tags }} | ||
steps: | ||
- name: Check out moma repo | ||
uses: actions/checkout@v3 | ||
with: | ||
path: moma_ws/src/moma | ||
submodules: recursive | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Log into registry ${{ env.REGISTRY }} | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract Docker metadata | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
flavor: prefix=dev | ||
- name: Build and push docker | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: ./moma_ws/src/moma/docker/ | ||
file: ./moma_ws/src/moma/docker/dev.Dockerfile | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
|
||
build-robot: | ||
name: Build robot docker image | ||
runs-on: ubuntu-latest | ||
outputs: | ||
docker_image_name: ${{ steps.meta.outputs.tags }} | ||
steps: | ||
- name: Check out moma repo | ||
uses: actions/checkout@v3 | ||
with: | ||
path: moma_ws/src/moma | ||
submodules: recursive | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Log into registry ${{ env.REGISTRY }} | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract Docker metadata | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
flavor: prefix=robot | ||
- name: Build and push docker | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: ./moma_ws/src/moma/docker/ | ||
file: ./moma_ws/src/moma/docker/robot.Dockerfile | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
|
||
# Checks out the demo branch and builds a docker image of that. | ||
build-demo: | ||
name: Build robot docker image | ||
runs-on: ubuntu-latest | ||
outputs: | ||
docker_image_name: ${{ steps.meta.outputs.tags }} | ||
steps: | ||
- name: Check out moma repo | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: demo | ||
path: moma_ws/src/moma | ||
submodules: recursive | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Log into registry ${{ env.REGISTRY }} | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract Docker metadata | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
flavor: prefix=demo | ||
- name: Build and push docker | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: ./moma_ws/src/moma/docker/ | ||
file: ./moma_ws/src/moma/docker/demo.Dockerfile | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max |