-
Notifications
You must be signed in to change notification settings - Fork 1
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
Kam0ss
authored and
Kam0ss
committed
Apr 30, 2022
1 parent
098d77b
commit bd5fc32
Showing
6 changed files
with
112 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
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,105 @@ | ||
name: Docker Image CI - Fix Branch | ||
|
||
on: | ||
push: | ||
branches: [fix/**] | ||
schedule: | ||
- cron: "12 0 * * *" | ||
|
||
jobs: | ||
build-ros-perception-x86-64: | ||
name: "Build ROS perception X86/64" | ||
runs-on: ubuntu-latest | ||
env: | ||
BASE_IMAGE: "docker.pkg.github.com/sonia-auv/sonia_common/sonia_common:x86-perception-latest" | ||
ARCH: x86 | ||
TARGET_TYPE: perception | ||
TARGET_VERSION: fix | ||
IMAGE_NAME: sonia-ros-tcp-endpoint | ||
GITHUB_REMOTE_URL: docker.pkg.github.com/${{ github.repository }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Login to Github Package Registry | ||
run: | | ||
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin | ||
- name: Build the docker image (perception based) | ||
run: | | ||
docker build . --tag build-fix-${GITHUB_REF##*/}-${GITHUB_RUN_NUMBER} --build-arg BUILD_DATE=$(date '+%Y-%m-%d_%H:%M:%S') --build-arg VERSION=${GITHUB_REF##*/}-$(date ' +%Y-%m-%d_%H:%M:%S') --build-arg BASE_IMAGE=${BASE_IMAGE} | ||
- name: Create Docker Image Tag | ||
run: | | ||
docker tag build-fix-${GITHUB_REF##*/}-${GITHUB_RUN_NUMBER} ${GITHUB_REMOTE_URL}/${IMAGE_NAME}:${ARCH}-${TARGET_TYPE}-${TARGET_VERSION}-${GITHUB_REF##*/} | ||
- name: Push Image to Github Packages Registry | ||
run: | | ||
docker push --all-tags ${GITHUB_REMOTE_URL}/${IMAGE_NAME} | ||
build-ros-perception-arm64: | ||
name: "Build ROS perception ARM64" | ||
runs-on: ubuntu-latest | ||
env: | ||
BASE_IMAGE: "docker.pkg.github.com/sonia-auv/sonia_common/sonia_common:arm64-perception-latest" | ||
ARCH: arm64 | ||
TARGET_TYPE: perception | ||
TARGET_VERSION: fix | ||
IMAGE_NAME: sonia-ros-tcp-endpoint | ||
GITHUB_REMOTE_URL: docker.pkg.github.com/${{ github.repository }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Login to Github Package Registry | ||
run: | | ||
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin | ||
- name: Enable Docker Daemon Experimental Features | ||
run: | | ||
sudo rm /etc/docker/daemon.json | ||
echo '{"experimental": true , "cgroup-parent": "/actions_job" }' | sudo tee -a /etc/docker/daemon.json | ||
sudo service docker restart | ||
docker version | ||
- name: Install QEMU to be able to compile on X86 into ARM64 | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install qemu binfmt-support qemu-user-static | ||
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes | ||
- name: Build the docker image (perception based) | ||
run: | | ||
docker build . --tag build-fix-${GITHUB_REF##*/}-${GITHUB_RUN_NUMBER} --build-arg BUILD_DATE=$(date '+%Y-%m-%d_%H:%M:%S') --build-arg VERSION=${GITHUB_REF##*/}-$(date ' +%Y-%m-%d_%H:%M:%S') --build-arg BASE_IMAGE=${BASE_IMAGE} | ||
- name: Create Docker Image Tag | ||
run: | | ||
docker tag build-fix-${GITHUB_REF##*/}-${GITHUB_RUN_NUMBER} ${GITHUB_REMOTE_URL}/${IMAGE_NAME}:${ARCH}-${TARGET_TYPE}-${TARGET_VERSION}-${GITHUB_REF##*/} | ||
- name: Push Image to Github Packages Registry | ||
run: | | ||
docker push --all-tags ${GITHUB_REMOTE_URL}/${IMAGE_NAME} | ||
notify-success: | ||
name: "Notify Slack - Success" | ||
runs-on: ubuntu-latest | ||
needs: [build-ros-perception-x86-64, build-ros-perception-arm64] | ||
if: success() | ||
steps: | ||
- name: Notify Slack Success | ||
env: | ||
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | ||
uses: voxmedia/github-action-slack-notify-build@v1 | ||
with: | ||
channel: github-ci-notifications | ||
status: SUCCESS | ||
color: good | ||
|
||
notify-fail: | ||
name: "Notify Slack - Failure" | ||
runs-on: ubuntu-latest | ||
needs: [build-ros-perception-x86-64, build-ros-perception-arm64] | ||
if: failure() | ||
steps: | ||
- name: Notify Slack Fail | ||
env: | ||
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | ||
uses: voxmedia/github-action-slack-notify-build@v1 | ||
with: | ||
channel: github-ci-notifications | ||
status: FAILED | ||
color: danger |
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