-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[infra/github] Intrdocue docker build workflow
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
Showing
1 changed file
with
64 additions
and
0 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
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 }} |