Browse code

Disable Windows build until new File device is fixed.

Andrew Alderwick authored on 02/01/2023 15:14:19
Showing 1 changed files
... ...
@@ -46,7 +46,7 @@ tasks:
46 46
         done
47 47
         [ -e ~/.ssh/id_rsa ] || complete-build
48 48
     - build-windows: |
49
-        if ssh -o ConnectTimeout=10 win true; then
49
+        if false && ssh -o ConnectTimeout=10 win true; then
50 50
             ssh win "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"
51 51
             rsync -rp win:uxn/bin/ build/uxn-win64/uxn/
52 52
         else