Skip to content
This repository was archived by the owner on Jun 2, 2024. It is now read-only.

Commit 1c7351f

Browse files
committed
ci: test failure DONOTMERGE
1 parent 2071c60 commit 1c7351f

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,11 @@ jobs:
3434
python ./build.py frappe --all-accents --zip -d $PWD/releases > frappe.log 2>&1 &
3535
python ./build.py latte --all-accents --zip -d $PWD/releases > latte.log 2>&1 &
3636
37-
until wait -n do
38-
if [ $? -ne 0 && $? -ne 127 ]; then
39-
echo "Build failure: $? exit recorded"
40-
fi
37+
wait_for_command() { wait -n; }
38+
until wait_for_command do
39+
if [ $? -ne 0 && $? -ne 127 ]; then
40+
echo "Build failure: $? exit recorded"
41+
fi
4142
done
4243
4344
cat *.log

build.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
from sources.build.args import parse_args
77
from sources.build.logger import logger
88

9+
print("hi")
10+
sys.exit(1)
911
if __name__ == "__main__":
1012
git_root = os.path.dirname(os.path.realpath(__file__))
1113
args = parse_args()

0 commit comments

Comments
 (0)