Commit 56312b98 authored by peng.xu's avatar peng.xu
Browse files

Merge branch 'branch-0.5.0' into 'branch-0.5.0'

re-organize project directory

See merge request megasearch/milvus!706

Former-commit-id: 9ffa8990f93e98ea2b52d6bdd24f72076e66de06
parents d428b8d1 9132ce9e
Loading
Loading
Loading
Loading

.dockerignore

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
.git/
.gitignore
.idea/
+5 −5
Original line number Diff line number Diff line
# CLion generated files
cpp/cmake-build-debug/
cpp/cmake-build-release/
cpp/cmake_build
cpp/.idea/
cpp/thirdparty/knowhere_build
core/cmake-build-debug/
core/cmake-build-release/
core/cmake_build
core/.idea/
core/thirdparty/knowhere_build

.idea/
.ycm_extra_conf.py

CHANGELOGS.md

deleted100644 → 0
+0 −21
Original line number Diff line number Diff line
# Changelog

Please mark all change in change log and use the ticket from JIRA.

## [Unreleased]

### Bug

### Improvement
- MS-4 - Refactor the vecwise_engine code structure

### New Feature
- MS-3 - Define the SDK C++ interface

### Task

- MS-1 - Add CHANGELOG.md
- MS-161 - Add CI / CD Module to Milvus Project
- MS-202 - Add Milvus Jenkins project email notification
- MS-215 - Add Milvus cluster CI/CD groovy file 
- MS-277 - Update CUDA Version to V10.1

CONTRIBUTING.md

deleted100644 → 0
+0 −0

Empty file deleted.

Dockerfile

deleted100644 → 0
+0 −15
Original line number Diff line number Diff line
FROM nvidia/cuda:9.0-devel-ubuntu16.04

ENV NVIDIA_DRIVER_CAPABILITIES compute,utility

WORKDIR /app

COPY environment.yaml install/miniconda.sh /app/

RUN ./miniconda.sh -p $HOME/miniconda -b -f \
    && echo ". /root/miniconda/etc/profile.d/conda.sh" >> /root/.bashrc \
    && /root/miniconda/bin/conda env create -f environment.yaml \
    && echo "conda activate vec_engine" >> /root/.bashrc \
    && rm /app/*

COPY . /app
Loading