Mercurial > minori
changeset 251:4d635d3e168a
*: remove stupid windows build
it doesn't even work anyway.
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Sun, 04 Feb 2024 21:18:23 -0500 |
parents | c130f47f6f48 |
children | a0eeb2cc7e6d |
files | .builds/windows.yml |
diffstat | 1 files changed, 0 insertions(+), 36 deletions(-) [+] |
line wrap: on
line diff
--- a/.builds/windows.yml Sun Feb 04 21:17:17 2024 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,36 +0,0 @@ -image: debian/bookworm -packages: - - automake - - autoconf - - libtool -sources: - - https://hg.sr.ht/~mrpapersonic/minori -tasks: - - install-docker: | - # Add Docker's official GPG key: - sudo apt update - sudo apt install ca-certificates curl gnupg - sudo install -m 0755 -d /etc/apt/keyrings - curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg - sudo chmod a+r /etc/apt/keyrings/docker.gpg - - # Add the repository to Apt sources: - echo \ - "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \ - $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ - sudo tee /etc/apt/sources.list.d/docker.list > /dev/null - sudo apt update - - sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin - - build: | - export ARCH="x86_64" - cd minori - autoreconf -i - - mkdir build - sudo docker run -e MSYSTEM=MINGW64 -w "$PWD/build" amitie10g/msys2 "/bin/bash -c 'pacman -S --noconfirm mingw-w64-$ARCH-qt5-base mingw-w64-$ARCH-qt5-translations mingw-w64-$ARCH-qt5-tools mingw-w64-$ARCH-toolchain mingw-w64-$ARCH-curl mingw-w64-$ARCH-make; ../configure; make; ../scripts/win32/deploy_build.sh'" - -triggers: - - action: email - condition: failure - to: Paper <mrpapersonic@gmail.com>