Skip to content

Build bumiworker test image and run tests on it - started by nexusriot #54

Build bumiworker test image and run tests on it - started by nexusriot

Build bumiworker test image and run tests on it - started by nexusriot #54

name: Build bumiworker test image and run tests on it
run-name: Build bumiworker test image and run tests on it - started by ${{ github.actor }}
on:
pull_request:
types: [opened, synchronize]
paths:
- 'bumiworker/**'
workflow_dispatch:
jobs:
build_image:
runs-on: self-hosted
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Login to Docker Hub (optional)
env:
username: ${{ secrets.EXT_DOCKER_LOGIN }}
password: ${{ secrets.EXT_DOCKER_TOKEN }}
if: ${{ env.username != '' && env.password != ''}}
uses: docker/login-action@v3
with:
username: ${{ env.username }}
password: ${{ env.password }}
- name: Build image
run: bash -x build.sh bumiworker build
- name: Build test image and run tests
run: bash -x bumiworker/run_test.sh