加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.sh 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
Nick Craver 提交于 2016-04-17 15:04 . Bash build: fix test runner on OS X
#!/bin/bash
echo ""
echo "Installing dotnet cli..."
echo ""
export DOTNET_INSTALL_DIR="./.dotnet/"
tools/install.sh
origPath=$PATH
export PATH="./dotnet/bin/:$PATH"
if [ $? -ne 0 ]; then
echo >&2 ".NET Execution Environment installation has failed."
exit 1
fi
export DOTNET_HOME="$DOTNET_INSTALL_DIR/cli"
export PATH="$DOTNET_HOME/bin:$PATH"
export autoGeneratedVersion=false
# Generate version number if not set
if [[ -z "$BuildSemanticVersion" ]]; then
autoVersion="$((($(date +%s) - 1451606400)/60))-$(date +%S)"
export BuildSemanticVersion="rc2-$autoVersion"
autoGeneratedVersion=true
echo "Set version to $BuildSemanticVersion"
fi
sed -i '' "s/99.99.99-rc2/1.0.0-$BuildSemanticVersion/g" */*/project.json
# Restore packages and build product
dotnet restore -v Minimal # Restore all packages
# Build all
# Note the exclude: https://github.com/dotnet/cli/issues/1342
for d in Dapper*/; do
if [ "$d" != "*.EntityFramework.StrongName" ]; then
echo "Building $d"
pushd "$d"
dotnet build -f netstandard1.3
popd
fi
done
# Run tests
for d in *.Tests*/; do
echo "Testing $d"
pushd "$d"
dotnet test -f netcoreapp1.0
popd
done
sed -i '' "s/1.0.0-$BuildSemanticVersion/99.99.99-rc2/g" */*/project.json
if [ $autoGeneratedVersion ]; then
unset BuildSemanticVersion
fi
export PATH=$origPath
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化