ignore previously failed gems
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
bed7d6f785
commit
6b23dd47e2
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue