milvus/.github/workflows/mac.yaml
Enwei Jiao 958e94f6f0
Use Conan as c++ package manager (#19920)
Signed-off-by: Enwei Jiao <enwei.jiao@zilliz.com>

Signed-off-by: Enwei Jiao <enwei.jiao@zilliz.com>
2022-11-23 10:39:11 +08:00

98 lines
3.1 KiB
YAML

name: Mac Code Checker
# 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/**'
- 'cmd/**'
- 'build/**'
- '.github/workflows/mac.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
jobs:
mac:
name: Code Checker MacOS 12
runs-on: macos-12
timeout-minutes: 120
steps:
- 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: Mac Cache Third Party
uses: actions/cache@v3
with:
path: |
/tmp/thirdparty
key: macos-thirdparty-${{ hashFiles('internal/core/thirdparty/**') }}
restore-keys: macos-thirdparty-
- name: Mac Cache Cmake Build
uses: actions/cache@v3
with:
path: |
cmake_build/3rdparty_download/download
key: macos-cmake-build-${{ env.corehash }}
restore-keys: macos-cmake-build-
- name: Mac Cache CCache Volumes
uses: actions/cache@v3
with:
path: /var/tmp/ccache
key: macos-ccache-${{ env.corehash }}
restore-keys: macos-ccache-
- name: Setup Go environment
uses: actions/setup-go@v2.2.0
with:
go-version: '~1.18.1'
- name: Mac Cache Go Mod Volumes
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: macos-go-mod-${{ hashFiles('**/go.sum') }}
restore-keys: macos-go-mod-
- name: Mac Cache Conan Packages
uses: pat-s/always-upload-cache@v3
with:
path: ~/.conan
key: macos-conan-${{ hashFiles('internal/core/conanfile.txt') }}
restore-keys: macos-conan-
- name: Code Check
env:
CCACHE_DIR: /var/tmp/ccache
CCACHE_COMPILERCHECK: content
CCACHE_COMPRESS: 1
CCACHE_COMPRESSLEVEL: 5
CCACHE_MAXSIZE: 2G
CUSTOM_THIRDPARTY_PATH: /tmp/thirdparty
run: |
if [[ ! -d "/var/tmp/ccache" ]];then
mkdir -p /var/tmp/ccache
fi
brew install boost libomp ninja tbb openblas ccache conan
if [[ ! -d "/usr/local/opt/llvm" ]]; then
ln -s /usr/local/opt/llvm@14 /usr/local/opt/llvm
fi
make milvus
- name: Upload Cmake log
uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: cmake-log
path: cmake_build/CMakeFiles/*.log