mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 06:55:27 +08:00
* add github actions * add amd64-ubuntu-18.04-cache volumes * update core.yml in github actions * update ci/docker/ubuntu-18.04-core.dockerfile * update CI scripts file * update github actions * update github actions * update github actions * remove Travis CI * update docker-compose.yml * update ci scripts files * update docker-compose.yml
11 lines
157 B
Bash
Executable File
11 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
export CCACHE_COMPRESS=1
|
|
export CCACHE_COMPRESSLEVEL=5
|
|
export CCACHE_COMPILERCHECK=content
|
|
export PATH=/usr/lib/ccache/:$PATH
|
|
|
|
set +ex
|