uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit 76be4519b7f64f6cfe914157a3160d8d7bccb29f
parent ea3b6416f87a8da388ce559c5c8ee93fe89b1f75
Author: Andrew Alderwick <andrew@alderwick.co.uk>
Date:   Sun, 16 Jan 2022 02:36:39 +0000

Include rompacks in published site.

Diffstat:
M.build.yml | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.build.yml b/.build.yml @@ -45,8 +45,8 @@ tasks: [ -d "${PROJECT}" ] || git clone "https://git.sr.ht/~rabbits/${PROJECT}" ( cd "${PROJECT}" && ../uxn/uxn/uxnasm "${F#*/}" "../rompack/uxn/${ROMNAME}" || rm -f "../rompack/uxn/${ROMNAME}" ) done - tar -czf out/rompack.tar.gz -C rompack uxn - ( cd rompack && zip -qr ../out/rompack.zip uxn ) + tar -czf out/uxn-rompack.tar.gz -C rompack uxn + ( cd rompack && zip -qr ../out/uxn-rompack.zip uxn ) [ -e ~/.ssh/id_rsa ] || complete-build - build-windows: | ssh win "rm -f uxn-windows-64bit.zip; export PATH=\"\${PATH}:/mingw64/bin\"; set -ex; cd uxn; git fetch; git checkout .; git clean -xfd; git checkout $(cd uxn && git rev-parse HEAD); MSYSTEM=MSYS ./build.sh --no-run; mv bin uxn; zip -qr ../uxn-windows-64bit.zip uxn" @@ -57,13 +57,13 @@ tasks: - upload: | if [ "$(cd uxn && git rev-parse HEAD)" != "$(cd uxn && git rev-parse origin/main)" ]; then exit; fi ls -l out - tar -czf out.tar.gz -C out uxn-linux-amd64.tar.gz uxn-windows-64bit.zip uxn-macos.tar.gz + tar -czf out.tar.gz -C out . acurl() { set +x curl -H "Authorization: Bearer ${OAUTH2_TOKEN}" "${@}" set -x } - acurl -f "https://pages.sr.ht/publish/${SITE}" -Fcontent=@out.tar.gz - acurl -f "https://pages.sr.ht/publish/${SITE}" -Fcontent=@out.tar.gz -Fprotocol=GEMINI + acurl -fsS "https://pages.sr.ht/publish/${SITE}" -Fcontent=@out.tar.gz + acurl -fsS "https://pages.sr.ht/publish/${SITE}" -Fcontent=@out.tar.gz -Fprotocol=GEMINI - build-9front: | ssh 9front "$(cd uxn && git rev-parse HEAD)"