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 b8a1259
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/build-dev-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Build docker image for development and CI/CD
on:
push:
branches:
- master
- release/*
paths:
- '.github/workflow/build-dev-docker.yml'
- 'infra/docker/**'
pull_request:
branches:
- master
- release/*
paths:
- '.github/workflow/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
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'
run: |
DOCKER_IMAGE_NAME=one-test ./nnas docker-run make -f Makefile.template
# 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
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 b8a1259

Please sign in to comment.