This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
Merge pull request #102 from zilliztech/feature_support_partition #140
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: Test (milvus1x2milvus2xconfig) on pull request | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'asap/**' | |
- 'cmd/**' | |
- 'configs/**' | |
- 'core/**' | |
- 'internal/**' | |
- 'server/**' | |
- 'starter/**' | |
- 'storage/**' | |
- 'test/**' | |
- 'testfiles/**' | |
- '!**.md' | |
- '.github/workflows/**' | |
- 'deployment/**' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'asap/**' | |
- 'cmd/**' | |
- 'configs/**' | |
- 'core/**' | |
- 'internal/**' | |
- 'server/**' | |
- 'starter/**' | |
- 'storage/**' | |
- 'test/**' | |
- 'testfiles/**' | |
- '!**.md' | |
- '.github/workflows/**' | |
- 'deployment/**' | |
workflow_dispatch: | |
jobs: | |
test-milvus-migration-cli-milvus1x-specify-config-main: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
deploy_tools: [docker-compose] | |
milvus_2_x_mode: [standalone] | |
steps: | |
- uses: actions/checkout@main | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
cache: pip | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.22' | |
cache: true | |
- name: Build | |
shell: bash | |
run: | | |
go build | |
- name: Milvus 2.x deploy | |
timeout-minutes: 10 | |
shell: bash | |
working-directory: deployment/${{ matrix.milvus_2_x_mode }} | |
run: | | |
docker compose up -d | |
bash ../../scripts/check_healthy.sh | |
docker compose ps -a | |
- name: dump | |
timeout-minutes: 3 | |
shell: bash | |
run: | | |
./milvus-migration dump -c ./testfiles/config/migration.yaml | |
- name: load | |
timeout-minutes: 3 | |
shell: bash | |
run: | | |
./milvus-migration load -c ./testfiles/config/migration.yaml | |
- name: Install dependency | |
working-directory: testfiles | |
shell: bash | |
run: | | |
pip install -r requirements.txt | |
- name: Verify data | |
timeout-minutes: 5 | |
shell: bash | |
run: | | |
python testfiles/testcases/verify_data_milvus1x.py |