ignore previously failed gems
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
f 2022-02-05 17:54:42 -03:00
parent bed7d6f785
commit 6b23dd47e2

View file

@ -13,6 +13,10 @@ find build/ -type f |
while read BUILD BUILT GEM_NAME GEM_VERSION; do
test -f "${BUILT}" && continue
FAILED="failed/${ALPINE_VERSION}/${GEM_NAME}/${GEM_VERSION}"
test -f "${FAILED}" && continue
unset EXTRA_PKGS EXTRA_GEMS GEM_COMPILER_FLAGS
source "${BUILD}"
@ -29,7 +33,7 @@ find build/ -type f |
/usr/local/bin/bootstrap || true
if test $? -ne 0 ; then
BUILT="failed/${ALPINE_VERSION}/${GEM_NAME}/${GEM_VERSION}"
BUILT="${FAILED}"
fi
dirname "${BUILT}" | xargs mkdir -p