fix: fix chunked segment term filter expression and add ut #34474
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/**' | |
- 'pkg/**' | |
- 'client/**' | |
- 'cmd/**' | |
- 'build/**' | |
- 'tests/integration/**' | |
- 'tests/go_client/**' | |
- '.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 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
mac: | |
name: Code Checker MacOS 12 | |
runs-on: macos-12 | |
timeout-minutes: 300 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Python environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '<3.12' | |
- name: Setup Go environment | |
uses: actions/[email protected] | |
with: | |
go-version: '~1.21.11' | |
- name: Download Caches | |
uses: ./.github/actions/macos-cache-restore | |
- name: Code Check | |
env: | |
CCACHE_DIR: /var/tmp/ccache | |
CCACHE_COMPILERCHECK: content | |
CCACHE_COMPRESS: 1 | |
CCACHE_COMPRESSLEVEL: 5 | |
CCACHE_MAXSIZE: 2G | |
run: | | |
if [[ ! -d "/var/tmp/ccache" ]];then | |
mkdir -p /var/tmp/ccache | |
fi | |
ls -alh /var/tmp/ccache | |
brew install libomp ninja openblas ccache pkg-config | |
pip3 install conan==1.64.1 | |
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 | |
- name: Save Caches | |
uses: ./.github/actions/macos-cache-save | |
if: github.event_name != 'pull_request' |