Fix/add gcovr to docker image (#204) #3
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 workflow will build and push official docker images for Noetic-Foxy OS when new push occurs | |
# to develop, master, release branches but doesn't run any unit test or sonar scanner | |
name: Docker Hub Humble build | |
on: | |
push: | |
branches: | |
- develop | |
- master | |
- "release/*" | |
tags: | |
- "carma-system-*" | |
paths: | |
- '**' # Build when there are changes in humble folder or related files | |
- '!noetic-foxy/**' # Exclude noetic-foxy folder | |
jobs: | |
# Ubuntu 22.04 (ROS2 Humble) | |
dockerhub-humble: | |
uses: usdot-fhwa-stol/actions/.github/workflows/dockerhub.yml@main | |
secrets: | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | |
with: | |
file: ./humble/Dockerfile | |
tag_name_suffix: humble |