diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2022-01-02 23:23:55 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2022-01-02 23:23:55 +0100 |
commit | 11b4c78b1c2f6aa391aa299394a3143e0095a32d (patch) | |
tree | 52fa3db0f4f37bfca0d8cb54164a68afe0c01b6d | |
parent | install pyenv (diff) | |
download | newspipe-11b4c78b1c2f6aa391aa299394a3143e0095a32d.tar.gz newspipe-11b4c78b1c2f6aa391aa299394a3143e0095a32d.tar.bz2 newspipe-11b4c78b1c2f6aa391aa299394a3143e0095a32d.zip |
added required dependencies for the build
-rw-r--r-- | .builds/debian.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.builds/debian.yml b/.builds/debian.yml index 2cff3b11..92583cd8 100644 --- a/.builds/debian.yml +++ b/.builds/debian.yml @@ -2,10 +2,28 @@ image: ubuntu/22.04 sources: - https://git.sr.ht/~cedric/newspipe packages: + - curl + - build-essential - python3 - python3-dev - python3-pip - python3-venv + - libssl-dev + - libbz2-dev + - libreadline-dev + - libsqlite3-dev + - libncurses5-dev + - libncursesw5-dev + - libffi-dev + - liblzma-dev + - libxml2-dev + - libxslt-dev + - libpq-dev + - llvm + - python3-openssl + - tk-dev + - xz-utils + - zlib1g-dev environment: project: newspipe tasks: |