mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 10:59:32 +08:00
881be7f3e3
Signed-off-by: XuanYang-cn <xuan.yang@zilliz.com>
68 lines
2.0 KiB
YAML
68 lines
2.0 KiB
YAML
name: Code Checker
|
|
# 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:
|
|
- 'scripts/**'
|
|
- 'internal/**'
|
|
- 'cmd/**'
|
|
- 'build/**'
|
|
- '.github/workflows/code-checker.yaml'
|
|
- '.env'
|
|
- docker-compose.yml
|
|
- Makefile
|
|
- '!**.md'
|
|
pull_request:
|
|
# file paths to consider in the event. Optional; defaults to all.
|
|
paths:
|
|
- 'scripts/**'
|
|
- 'internal/**'
|
|
- 'cmd/**'
|
|
- 'build/**'
|
|
- '.github/workflows/code-checker.yaml'
|
|
- '.env'
|
|
- docker-compose.yml
|
|
- Makefile
|
|
- '!**.md'
|
|
|
|
jobs:
|
|
ubuntu:
|
|
name: AMD64 Ubuntu ${{ matrix.ubuntu }}
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 60
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
ubuntu: [18.04]
|
|
env:
|
|
UBUNTU: ${{ matrix.ubuntu }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Cache CCache Volumes
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: .docker/amd64-ubuntu${{ matrix.ubuntu }}-ccache
|
|
key: ubuntu${{ matrix.ubuntu }}-ccache-${{ hashFiles('internal/core/**') }}
|
|
restore-keys: ubuntu${{ matrix.ubuntu }}-ccache-
|
|
- name: Cache Go Mod Volumes
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: .docker/amd64-ubuntu${{ matrix.ubuntu }}-go-mod
|
|
key: ubuntu${{ matrix.ubuntu }}-go-mod-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: ubuntu${{ matrix.ubuntu }}-go-mod-
|
|
- name: Dockerfile Lint
|
|
uses: reviewdog/action-hadolint@v1
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
reporter: github-pr-check # Default is github-pr-check
|
|
hadolint_ignore: DL3008
|
|
- name: Code Check
|
|
env:
|
|
CHECK_BUILDER: "1"
|
|
run: |
|
|
./build/builder.sh /bin/bash -c "make check-proto-product && make verifiers"
|