1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-09 21:30:42 +00:00

Add sqlite to CI dependencies

This commit is contained in:
Michael Vetter 2020-03-23 11:24:57 +01:00
parent 71e872c5b8
commit 672f3e22e8
6 changed files with 9 additions and 3 deletions

View File

@ -21,6 +21,7 @@ packages:
- libgpg-error
- libgcrypt
- libsignal-protocol-c
- sqlite3
sources:
- https://github.com/profanity-im/profanity

View File

@ -28,6 +28,7 @@ matrix:
- PKG_CONFIG_PATH="/usr/local/opt/curl/lib/pkgconfig:$PKG_CONFIG_PATH"
- PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig:$PKG_CONFIG_PATH"
- PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig:$PKG_CONFIG_PATH"
- PKG_CONFIG_PATH="/usr/local/opt/sqlite/lib/pkgconfig:$PKG_CONFIG_PATH"
before_install:
- >

View File

@ -19,3 +19,4 @@ brew 'openssl'
brew 'ossp-uuid'
brew 'pkg-config'
brew 'readline'
brew 'sqlite'

View File

@ -25,7 +25,8 @@ RUN pacman -Syu --noconfirm && pacman -S --needed --noconfirm \
openssl \
pkg-config \
python \
wget
wget \
sqlite
RUN mkdir -p /usr/src/{stabber,profanity}

View File

@ -25,7 +25,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libxss-dev \
make \
pkg-config \
python-dev
python-dev \
libsqlite3-dev
RUN mkdir -p /usr/src/{stabber,libmesode,profanity}
WORKDIR /usr/src

View File

@ -33,7 +33,8 @@ RUN zypper --non-interactive in --no-recommends \
python-devel \
python3 \
python3-devel \
readline-devel
readline-devel \
sqlite3-devel
# https://github.com/openSUSE/docker-containers-build/issues/26
ENV LANG en_US.UTF-8