2020-10-19 10:36:40 +08:00
|
|
|
name: Build and test
|
|
|
|
# TODO: do not trigger action for some document file update
|
|
|
|
|
|
|
|
# This workflow is triggered on pushes or pull request to the repository.
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
# file paths to consider in the event. Optional; defaults to all.
|
|
|
|
paths:
|
2020-10-24 11:36:42 +08:00
|
|
|
- 'scripts/**'
|
2020-10-19 10:36:40 +08:00
|
|
|
- 'internal/**'
|
|
|
|
- 'cmd/**'
|
2020-10-27 15:51:16 +08:00
|
|
|
- '.github/workflows/main.yaml'
|
2020-10-19 10:36:40 +08:00
|
|
|
- docker-compose.yml
|
2020-11-03 11:25:47 +08:00
|
|
|
- Makefile
|
2020-10-19 10:36:40 +08:00
|
|
|
- '!**.md'
|
|
|
|
pull_request:
|
|
|
|
# file paths to consider in the event. Optional; defaults to all.
|
|
|
|
paths:
|
2020-10-24 11:36:42 +08:00
|
|
|
- 'scripts/**'
|
2020-10-19 10:36:40 +08:00
|
|
|
- 'internal/**'
|
|
|
|
- 'cmd/**'
|
2020-10-27 15:51:16 +08:00
|
|
|
- '.github/workflows/main.yaml'
|
2020-10-19 10:36:40 +08:00
|
|
|
- docker-compose.yml
|
2020-11-03 11:25:47 +08:00
|
|
|
- Makefile
|
2020-10-19 10:36:40 +08:00
|
|
|
- '!**.md'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
ubuntu:
|
2020-10-27 15:51:16 +08:00
|
|
|
name: AMD64 Ubuntu ${{ matrix.ubuntu }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 60
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
ubuntu: [18.04]
|
|
|
|
env:
|
|
|
|
UBUNTU: ${{ matrix.ubuntu }}
|
2020-10-19 10:36:40 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2020-10-27 15:51:16 +08:00
|
|
|
- name: Check Dockerfile
|
|
|
|
uses: reviewdog/action-hadolint@v1
|
2020-10-19 10:36:40 +08:00
|
|
|
with:
|
2020-10-27 15:51:16 +08:00
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
reporter: github-pr-check # Default is github-pr-check
|
2020-10-31 16:30:20 +08:00
|
|
|
hadolint_ignore: DL3008
|
2020-10-27 15:51:16 +08:00
|
|
|
- name: Cache Docker Volumes
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: .docker
|
|
|
|
key: ubuntu${{ matrix.ubuntu }}-${{ hashFiles('internal/core/**') }}
|
|
|
|
restore-keys: ubuntu${{ matrix.ubuntu }}-
|
2020-11-09 18:47:37 +08:00
|
|
|
- name: Start Service
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
cd ${GITHUB_WORKSPACE}/deployments/docker && docker-compose up -d
|
2020-11-13 12:27:41 +08:00
|
|
|
- name: Build and UnitTest
|
2020-10-19 10:36:40 +08:00
|
|
|
run: |
|
2020-11-13 12:27:41 +08:00
|
|
|
./build/builder.sh
|