From 75790426394b087bfb30f643a53475fe7348308b Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Mon, 11 Jul 2022 18:52:46 +0400 Subject: [PATCH 1/3] Try disabling appimage cache --- .appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 4d749aa5c4..c4c543bf29 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -14,8 +14,8 @@ for: PYTHON_APPIMAGE: python3.7.13-cp37-cp37m-manylinux2014_x86_64.AppImage DEPLOY_DIR: AppDir/opt/pyfa # APPVEYOR_SSH_BLOCK: true - cache: - - /home/appveyor/.cache/pip -> requirements.txt +# cache: +# - /home/appveyor/.cache/pip -> requirements.txt init: - sh: curl -sflL 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-ssh.sh' | bash -e - install: @@ -211,4 +211,4 @@ for: force_update: false # deploy on tag push only on: - APPVEYOR_REPO_TAG: true \ No newline at end of file + APPVEYOR_REPO_TAG: true From d4a9814507515769d031a1d7b30c40ad0cbddca5 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Mon, 11 Jul 2022 20:41:40 +0400 Subject: [PATCH 2/3] Specify versions of some dependencies --- .appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index c4c543bf29..e96eda454c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -36,7 +36,8 @@ for: - sh: mkdir -p $DEPLOY_DIR # run install pyfa packages and any other requirements - - sh: AppDir/usr/bin/python -s -m pip install -U pip setuptools==41.6.0 wheel pathlib2 + - sh: AppDir/usr/bin/python -s -m pip install pip==22.0.4 setuptools==41.6.0 wheel pathlib2 + - sh: AppDir/usr/bin/python -s -m pip install requests==2.27.1 Pillow==9.1.0 kiwisolver==1.4.2 certifi==2021.10.8 - sh: AppDir/usr/bin/python -s -m pip install -r ../requirements.txt # Run scripts to prep pyfa data and build database From 0c59d45e54c2a7f2f0b1d4d6775a940a8f4069c3 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Tue, 12 Jul 2022 01:43:07 +0400 Subject: [PATCH 3/3] Try disabling apt update --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index e96eda454c..9bd2e38a2e 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -20,7 +20,7 @@ for: - sh: curl -sflL 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-ssh.sh' | bash -e - install: - sh: git fetch --prune --unshallow # to fix the version dump issues - - sh: sudo DEBIAN_FRONTEND=noninteractive apt-get -y update +# - sh: sudo DEBIAN_FRONTEND=noninteractive apt-get -y update - sh: sudo DEBIAN_FRONTEND=noninteractive apt-get -y install python3.7-dev libgtk-3-dev python3-pip libwebkit2gtk-4.0-dev before_build: - sh: mkdir build && cd build