We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4778276 commit 790556cCopy full SHA for 790556c
1 file changed
.github/workflows/phpunit-tests-run.yml
@@ -38,7 +38,15 @@ jobs:
38
else
39
TAG="version-${VERSION}"
40
fi
41
- wget -O sqlite.tar.gz "https://sqlite.org/src/tarball/sqlite.tar.gz?r=${TAG}"
+ for attempt in 1 2 3 4 5; do
42
+ if wget -O sqlite.tar.gz "https://sqlite.org/src/tarball/sqlite.tar.gz?r=${TAG}"; then
43
+ break
44
+ fi
45
+ if [ "$attempt" -eq 5 ]; then
46
+ exit 1
47
48
+ sleep $(( attempt * 10 ))
49
+ done
50
tar xzf sqlite.tar.gz
51
cd sqlite
52
./configure --prefix=/usr/local CFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_ENABLE_FTS5 -DSQLITE_USE_URI -DSQLITE_ENABLE_JSON1" LDFLAGS="-lm"
0 commit comments