0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-12 23:58:55 +02:00

Fix olddeps build (#15626)

Do an `apt update` before install packages.
This commit is contained in:
Patrick Cloke 2023-05-18 10:53:57 -04:00 committed by GitHub
parent 4ec40b16ac
commit 5dc1f25c53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -314,8 +314,9 @@ jobs:
# There aren't wheels for some of the older deps, so we need to install
# their build dependencies
- run: |
sudo apt update
sudo apt-get -qq install build-essential libffi-dev python-dev \
libxml2-dev libxslt-dev xmlsec1 zlib1g-dev libjpeg-dev libwebp-dev
libxml2-dev libxslt-dev xmlsec1 zlib1g-dev libjpeg-dev libwebp-dev
- uses: actions/setup-python@v4
with:

1
changelog.d/15626.misc Normal file
View file

@ -0,0 +1 @@
Fix the olddeps CI.