[skip ci] Update build Milvus with Docker README (#6400)

Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>
This commit is contained in:
quicksilver 2021-07-09 14:08:00 +08:00 committed by GitHub
parent 5acf569540
commit 5d1f784bcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 1 deletions

View File

@ -8,11 +8,13 @@ on:
paths: paths:
- 'build/docker/builder/**' - 'build/docker/builder/**'
- '.github/workflows/publish-builder.yaml' - '.github/workflows/publish-builder.yaml'
- '!**.md'
pull_request: pull_request:
# file paths to consider in the event. Optional; defaults to all. # file paths to consider in the event. Optional; defaults to all.
paths: paths:
- 'build/docker/builder/**' - 'build/docker/builder/**'
- '.github/workflows/publish-builder.yaml' - '.github/workflows/publish-builder.yaml'
- '!**.md'
jobs: jobs:
publish-builder: publish-builder:

View File

@ -8,11 +8,13 @@ on:
paths: paths:
- 'build/docker/krte/**' - 'build/docker/krte/**'
- '.github/workflows/publish-krte-images.yaml' - '.github/workflows/publish-krte-images.yaml'
- '!**.md'
pull_request: pull_request:
# file paths to consider in the event. Optional; defaults to all. # file paths to consider in the event. Optional; defaults to all.
paths: paths:
- 'build/docker/krte/**' - 'build/docker/krte/**'
- '.github/workflows/publish-krte-images.yaml' - '.github/workflows/publish-krte-images.yaml'
- '!**.md'
jobs: jobs:
publish-krte-images: publish-krte-images:

View File

@ -9,12 +9,14 @@ on:
- 'tests/docker/Dockerfile' - 'tests/docker/Dockerfile'
- 'tests/python_test/requirements.txt' - 'tests/python_test/requirements.txt'
- '.github/workflows/publish-test-images.yaml' - '.github/workflows/publish-test-images.yaml'
- '!**.md'
pull_request: pull_request:
# file paths to consider in the event. Optional; defaults to all. # file paths to consider in the event. Optional; defaults to all.
paths: paths:
- 'tests/docker/Dockerfile' - 'tests/docker/Dockerfile'
- 'tests/python_test/requirements.txt' - 'tests/python_test/requirements.txt'
- '.github/workflows/publish-test-images.yaml' - '.github/workflows/publish-test-images.yaml'
- '!**.md'
jobs: jobs:
publish-pytest-images: publish-pytest-images:

View File

@ -1,4 +1,4 @@
# Building Milvus # Building Milvus with Docker
Building Milvus is easy if you take advantage of the containerized build environment. This document will help guide you through understanding this build process. Building Milvus is easy if you take advantage of the containerized build environment. This document will help guide you through understanding this build process.
@ -64,6 +64,7 @@ The following scripts are found in the [`build/`](.) directory. Note that all sc
* `build/builder.sh make unittest`: Run all unit tests * `build/builder.sh make unittest`: Run all unit tests
* `build/builder.sh make clean`: Clean up all the generated files * `build/builder.sh make clean`: Clean up all the generated files
You can specify a different OS for builder by setting OS_NAME which defaults to `ubuntu18.04`. Valid OS name are `ubuntu18.04`, `centos7`.
## E2E Tests ## E2E Tests