Ai
4 Star 10 Fork 0

Gitee 极速下载/RustPython

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/RustPython/RustPython
克隆/下载
pdc.sh 1.94 KB
一键复制 编辑 原始数据 按行查看 历史
Tony Jinwoo Ahn 提交于 2021-10-02 20:13 +08:00 . Fix misspelled variable
# Pre Delivery Check - or PDC for short - runs all build and check steps.
# The intention is to run all checks before delivering (or raising a PR or committing or what ever you want to use it for).
#
# PDC executes all of the configured actions in the given order and reports which of them failed,
# without stopping in case of an fail.
# The actions in the given version are the RustPython CI steps plus a debug build in advance.
# So you can run all of the checks in advance with one command.
#
# If you want to customize it or adapt the checks, just add or remove it from/ to the ACTIONS
# Preparation steps run before the first action is executed
# Typically we clear here the python cache to prevent dirty
# test results from cached python programs.
PRE_GLOBAL=("clear_pycache")
# Postprocessing steps run after the last ACTION has finished
POST_GLOBAL=()
# Preprocessing steps run before each action is executed
PRE_ACT=()
# Postprocessing steps run after each action is executed
POST_ACT=()
ACTIONS=("cargo build" "cargo build --release" "cargo fmt --all" "cargo clippy --all -- -Dwarnings" "cargo test --all" "cargo run --release -- -m test -v" "cd extra_tests" "pytest" "cd ..")
# Usually, there should be no need to adapt the remaining file, when adding or removing actions.
# clears the python cache or RustPython
clear_pycache() { find . -name __pycache__ -type d -exec rm -r {} \; ; }
RUSTPYTHONPATH=Lib
export RUSTPYTHONPATH
ACT_RES=0
FAILS=()
for pre in "${PRE_GLOBAL[@]}"; do
$pre
done
for act in "${ACTIONS[@]}"; do
for pre in "${PRE_ACTION[@]}"; do
$pre
done
$act
if ! [ $? -eq 0 ]; then
ACT_RES=1
FAILS+=("${act}")
fi
for pst in "${POST_ACTION[@]}"; do
$pst
done
done
for pst in "${POST_GLOBAL[@]}"; do
$pst
done
echo
echo
echo "*********************"
if ! [ $ACT_RES -eq 0 ]; then
echo "PDC failed"
for el in "${FAILS[@]}"; do
echo " Fail ${el}"
done
echo
else
echo "PDC passed"
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Rust
1
https://gitee.com/mirrors/RustPython.git
git@gitee.com:mirrors/RustPython.git
mirrors
RustPython
RustPython
main

搜索帮助