From f745b7763c21ec617d6d4d3b9d815244a8edc195 Mon Sep 17 00:00:00 2001 From: Reg Tiangha Date: Sat, 9 Mar 2024 09:53:35 -0700 Subject: [PATCH] Use local copy of gamedb --- .ci/source.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.ci/source.sh b/.ci/source.sh index f2a2771b7..f8059da7f 100755 --- a/.ci/source.sh +++ b/.ci/source.sh @@ -9,7 +9,10 @@ COMPAT_LIST='dist/compatibility_list/compatibility_list.json' mkdir artifacts pip3 install git-archive-all -wget -q https://web.archive.org/web/20231111133415if_/https://api.citra-emu.org/gamedb -O "${COMPAT_LIST}" + +# wget -q https://web.archive.org/web/20231111133415if_/https://api.citra-emu.org/gamedb -O "${COMPAT_LIST}" +touch "${COMPAT_LIST}" + git describe --abbrev=0 --always HEAD > GIT-COMMIT git describe --tags HEAD > GIT-TAG || echo 'unknown' > GIT-TAG git archive-all --include "${COMPAT_LIST}" --include GIT-COMMIT --include GIT-TAG --force-submodules artifacts/"${REV_NAME}.tar"