Skip to content

Commit

Permalink
do apt update (to hopefully address failing apt install) + list libff…
Browse files Browse the repository at this point in the history
…i7 first (seems to not getting installed)
  • Loading branch information
yarikoptic committed Oct 16, 2024
1 parent 45164c1 commit 3c38816
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ environment:
- ID: Ubu22
APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2204
PY: 3.10
INSTALL_SYSPKGS: python3-virtualenv libffi7
INSTALL_SYSPKGS: libffi7 python3-virtualenv
# system git-annex is way too old, use better one
INSTALL_GITANNEX: git-annex -m deb-url --url http://snapshot.debian.org/archive/debian/20201228T023115Z/pool/main/g/git-annex/git-annex_8.20201127-1_amd64.deb
# Windows core tests
Expand Down Expand Up @@ -141,7 +141,7 @@ install:
- sh: "[ \"x$PY\" != x ] && . ${HOME}/venv${PY}/bin/activate || virtualenv -p 3 ${HOME}/dlvenv && . ${HOME}/dlvenv/bin/activate; ln -s \"$VIRTUAL_ENV\" \"${HOME}/VENV\""
- cmd: "set PATH=C:\\Python%PY%;C:\\Python%PY%\\Scripts;%PATH%"
# Missing system software
- sh: "[ -n \"$INSTALL_SYSPKGS\" ] && ( [ \"x${APPVEYOR_BUILD_WORKER_IMAGE}\" = \"xmacos-monterey\" ] && brew install -q ${INSTALL_SYSPKGS} || sudo apt-get install --no-install-recommends -y ${INSTALL_SYSPKGS} ) || true"
- sh: "[ -n \"$INSTALL_SYSPKGS\" ] && ( [ \"x${APPVEYOR_BUILD_WORKER_IMAGE}\" = \"xmacos-monterey\" ] && brew install -q ${INSTALL_SYSPKGS} || sudo { sudo apt-get update; apt-get install --no-install-recommends -y ${INSTALL_SYSPKGS} ; } ) || true"
- python -m pip install .

test_script:
Expand Down

0 comments on commit 3c38816

Please sign in to comment.