1 Star 0 Fork 0

尧小飞 / cellphonedb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ci.sh 352 Bytes
一键复制 编辑 原始数据 按行查看 历史
chapuzzo 提交于 2019-06-10 16:03 . enabled version to build & run selection
#!/bin/bash
set -e
COMMON_VERSIONS=(3.5 3.6 3.7)
build(){
docker build . -t cpdb:${1} --build-arg PYTHON_VERSION=${1}
}
run(){
docker run --rm cpdb:${1}
}
for version in ${@-${COMMON_VERSIONS[@]}}
do
echo "building image for version $version"
build ${version}
echo "running tests for version $version"
run ${version}
done
1
https://gitee.com/yao_xiao_fei2/cellphonedb.git
git@gitee.com:yao_xiao_fei2/cellphonedb.git
yao_xiao_fei2
cellphonedb
cellphonedb
master

搜索帮助