mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Add sqlite to CI dependencies
This commit is contained in:
parent
71e872c5b8
commit
672f3e22e8
@ -21,6 +21,7 @@ packages:
|
||||
- libgpg-error
|
||||
- libgcrypt
|
||||
- libsignal-protocol-c
|
||||
- sqlite3
|
||||
|
||||
sources:
|
||||
- https://github.com/profanity-im/profanity
|
||||
|
@ -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:
|
||||
- >
|
||||
|
@ -19,3 +19,4 @@ brew 'openssl'
|
||||
brew 'ossp-uuid'
|
||||
brew 'pkg-config'
|
||||
brew 'readline'
|
||||
brew 'sqlite'
|
||||
|
@ -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}
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user