Use local copy of gamedb

This commit is contained in:
Reg Tiangha 2024-03-09 09:53:35 -07:00
parent 924d4b6a72
commit f745b7763c
No known key found for this signature in database
GPG key ID: 00D437798B1C2970

View file

@ -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"