加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run-ci 330 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ed Tanous 提交于 2024-02-27 12:59 . Move ci from format-code to run-ci
#!/bin/bash
# Run GUI Unit Tests as part of the CI Build process#
set -e
# When called from openbmc-build-scripts, the `pwd` could be anywhere, but
# the root of the repo is passed in the first argument. Switch to the repo
# root so npm/git run in the right place.
if [ -n "$1" ]; then
cd "$1"
fi
npm ci
npm run test:unit
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化