Skip to content

Commit

Permalink
[infra/github] Intrdocue docker build workflow
Browse files Browse the repository at this point in the history
This commit introduces a GitHub Actions workflow to build docker image and test, and push it to the docker hub.

ONE-DCO-1.0-Signed-off-by: Hyeongseok Oh <[email protected]>
  • Loading branch information
hseok-oh committed Jan 10, 2025
1 parent 17453b5 commit 6c317de
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/build-dev-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Build docker image for CI/CD infra
on:
push:
branches:
- master
- release/*
paths:
- '.github/workflows/build-dev-docker.yml'
- 'infra/docker/**'
pull_request:
branches:
- master
- release/*
paths:
- '.github/workflows/build-dev-docker.yml'
- 'infra/docker/**'

jobs:
# Build on docker CLI for PR test without login
build-pr-test:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
strategy:
matrix:
version: [ 'android-sdk', 'focal', 'jammy', 'noble' ]
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build Docker Image
run: |
./nnas build-docker-image --codename ${{ matrix.version }} --tag one-test
- name: Test onert build
if: matrix.version != 'android-sdk'
env:
DOCKER_IMAGE_NAME: one-test
run: |
./nnas docker-run --user root make -f Makefile.template
./nnas docker-run --user root Product/out/test/onert-test unittest
# Use github action for build and push to docker hub
build-docker-image:
if: github.event_name == 'push' && github.repository_owner == 'Samsung'
runs-on: ubuntu-latest
strategy:
matrix:
version: [ 'android-sdk', 'focal', 'jammy', 'noble' ]
steps:
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Install Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build Docker Image
uses: docker/build-push-action@v6
with:
file: ./infra/docker/${{ matrix.version }}/Dockerfile
push: true
tags: nnfw/one-devtools:${{ matrix.version }}

0 comments on commit 6c317de

Please sign in to comment.