1 Star 0 Fork 0

Sean/parallel-consumer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
bisect.sh 831 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
set -x
# It may be useful to make a copy of this file to run the bisect against a script outside the repository
# tweak the working tree by merging the hot-fix branch
# and then attempt a build
# alterantively use cherry pick
if git merge --no-commit --no-ff hot-fix &&
make
then
# run project specific test and report its status
~/check_test_case.sh
status=$?
else
# tell the caller this is untestable
status=125
fi
# undo the tweak to allow clean flipping to the next commit
git reset --hard
# return control
exit $status
mvn testCompile || exit 125 # this skips broken builds
# run a maven test
mvn -Dit.test=TransactionAndCommitModeTest#testLowMaxPoll -DskipUTs=true -DfailIfNoTests=false --projects parallel-consumer-core integration-test
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zh-xy/parallel-consumer.git
git@gitee.com:zh-xy/parallel-consumer.git
zh-xy
parallel-consumer
parallel-consumer
master

搜索帮助