mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
3e5bc2e517
not allow to upload cache when job failure this PR is to fix issue like below: openblas/0.3.23@milvus/dev is locked by another concurrent conan process, wait... If not the case, quit, and do 'conan remove --locks' Error: The operation was canceled. Signed-off-by: Sammy Huang <sammy.huang@zilliz.com>
135 lines
4.8 KiB
YAML
135 lines
4.8 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:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
# file paths to consider in the event. Optional; defaults to all.
|
|
paths:
|
|
- 'scripts/**'
|
|
- 'internal/**'
|
|
- 'pkg/**'
|
|
- 'cmd/**'
|
|
- 'build/**'
|
|
- 'tests/integration/**'
|
|
- '.github/workflows/code-checker.yaml'
|
|
- '.env'
|
|
- docker-compose.yml
|
|
- Makefile
|
|
- '!**.md'
|
|
- '!build/ci/jenkins/**'
|
|
# FIXME(wxyu): not need to run code check, update the ci-passed rules and remove these two lines
|
|
- go.mod
|
|
- go.sum
|
|
- .golangci.yml
|
|
- rules.go
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
ubuntu:
|
|
name: Code Checker AMD64 Ubuntu 20.04
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 180
|
|
strategy:
|
|
fail-fast: false
|
|
steps:
|
|
- name: Maximize build space
|
|
uses: easimon/maximize-build-space@master
|
|
if: ${{ ! startsWith(runner.name, 'self') }} # skip this step if it is self-hosted runner
|
|
with:
|
|
root-reserve-mb: 20480
|
|
swap-size-mb: 1024
|
|
remove-dotnet: 'true'
|
|
remove-android: 'true'
|
|
remove-haskell: 'true'
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: 'Generate CCache Hash'
|
|
env:
|
|
CORE_HASH: ${{ hashFiles( 'internal/core/**/*.cpp', 'internal/core/**/*.cc', 'internal/core/**/*.c', 'internal/core/**/*.h', 'internal/core/**/*.hpp', 'internal/core/**/CMakeLists.txt') }}
|
|
run: |
|
|
echo "corehash=${CORE_HASH}" >> $GITHUB_ENV
|
|
echo "Set CCache hash to ${CORE_HASH}"
|
|
- name: Cache CCache Volumes
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: .docker/amd64-ubuntu20.04-ccache
|
|
key: ubuntu20.04-ccache-${{ env.corehash }}
|
|
restore-keys: ubuntu20.04-ccache-
|
|
- name: Cache Go Mod Volumes
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: .docker/amd64-ubuntu20.04-go-mod
|
|
key: ubuntu20.04-go-mod-${{ hashFiles('go.sum, */go.sum') }}
|
|
restore-keys: ubuntu20.04-go-mod-
|
|
- name: Cache Conan Packages
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: .docker/amd64-ubuntu20.04-conan
|
|
key: ubuntu20.04-conan-${{ hashFiles('internal/core/conanfile.*') }}
|
|
restore-keys: ubuntu20.04-conan-
|
|
# - name: Setup upterm session
|
|
# uses: lhotari/action-upterm@v1
|
|
- name: Code Check
|
|
env:
|
|
OS_NAME: 'ubuntu20.04'
|
|
run: |
|
|
./build/builder.sh /bin/bash -c "make check-proto-product && make verifiers"
|
|
amazonlinux:
|
|
name: Code Checker Amazonlinux 2023
|
|
# Run in amazonlinux docker
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 180
|
|
steps:
|
|
- name: Maximize build space
|
|
uses: easimon/maximize-build-space@master
|
|
if: ${{ ! startsWith(runner.name, 'self') }} # skip this step if it is self-hosted runner
|
|
with:
|
|
root-reserve-mb: 20480
|
|
swap-size-mb: 1024
|
|
remove-dotnet: 'true'
|
|
remove-android: 'true'
|
|
remove-haskell: 'true'
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: 'Generate CCache Hash'
|
|
env:
|
|
CORE_HASH: ${{ hashFiles( 'internal/core/**/*.cpp', 'internal/core/**/*.cc', 'internal/core/**/*.c', 'internal/core/**/*.h', 'internal/core/**/*.hpp', 'internal/core/**/CMakeLists.txt') }}
|
|
run: |
|
|
echo "corehash=${CORE_HASH}" >> $GITHUB_ENV
|
|
echo "Set CCache hash to ${CORE_HASH}"
|
|
- name: Cache CCache Volumes
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: .docker/amd64-amazonlinux2023-ccache
|
|
key: amazonlinux2023-ccache-${{ env.corehash }}
|
|
restore-keys: amazonlinux2023-ccache-
|
|
- name: Cache Third Party
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: .docker/thirdparty
|
|
key: amazonlinux2023-thirdparty-${{ hashFiles('internal/core/thirdparty/**') }}
|
|
restore-keys: amazonlinux2023-thirdparty-
|
|
- name: Cache Go Mod Volumes
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: .docker/amd64-amazonlinux2023-go-mod
|
|
key: amazonlinux2023-go-mod-${{ hashFiles('go.sum, */go.sum') }}
|
|
restore-keys: amazonlinux2023-go-mod-
|
|
- name: Cache Conan Packages
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: .docker/amd64-amazonlinux2023-conan
|
|
key: amazonlinux2023-conan-${{ hashFiles('internal/core/conanfile.*') }}
|
|
restore-keys: amazonlinux2023-conan-
|
|
- name: Code Check
|
|
run: |
|
|
sed -i 's/ubuntu20.04/amazonlinux2023/g' .env
|
|
./build/builder.sh /bin/bash -c "make install"
|