mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Merge pull request #1402 from wstrm/add-ubuntu-ci
Ubuntu Latest (20.04 currently) in CI
This commit is contained in:
commit
921d191038
@ -18,6 +18,8 @@ matrix:
|
|||||||
env: BUILD_FLAVOR=tumbleweed
|
env: BUILD_FLAVOR=tumbleweed
|
||||||
- os: linux
|
- os: linux
|
||||||
env: BUILD_FLAVOR=debian
|
env: BUILD_FLAVOR=debian
|
||||||
|
- os: linux
|
||||||
|
env: BUILD_FLAVOR=ubuntu
|
||||||
- os: linux
|
- os: linux
|
||||||
env: BUILD_FLAVOR=arch
|
env: BUILD_FLAVOR=arch
|
||||||
- os: linux
|
- os: linux
|
||||||
|
52
Dockerfile.ubuntu
Normal file
52
Dockerfile.ubuntu
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
FROM ubuntu:latest
|
||||||
|
|
||||||
|
ENV DEBIAN_FRONTEND="noninteractive"
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
autoconf \
|
||||||
|
autoconf-archive \
|
||||||
|
automake \
|
||||||
|
expect \
|
||||||
|
gcc \
|
||||||
|
git \
|
||||||
|
libcmocka-dev \
|
||||||
|
libcurl3-dev \
|
||||||
|
libgcrypt-dev \
|
||||||
|
libglib2.0-dev \
|
||||||
|
libgpgme11-dev \
|
||||||
|
libgtk2.0-dev \
|
||||||
|
libmicrohttpd-dev \
|
||||||
|
libncursesw5-dev \
|
||||||
|
libnotify-dev \
|
||||||
|
libotr5-dev \
|
||||||
|
libreadline-dev \
|
||||||
|
libsignal-protocol-c-dev \
|
||||||
|
libssl-dev \
|
||||||
|
libtool \
|
||||||
|
libxss-dev \
|
||||||
|
make \
|
||||||
|
pkg-config \
|
||||||
|
python-dev \
|
||||||
|
libsqlite3-dev
|
||||||
|
|
||||||
|
RUN mkdir -p /usr/src/{stabber,libmesode,profanity}
|
||||||
|
WORKDIR /usr/src
|
||||||
|
|
||||||
|
RUN git clone git://github.com/boothj5/stabber.git
|
||||||
|
RUN git clone git://github.com/profanity-im/libmesode.git
|
||||||
|
|
||||||
|
# TODO: Re-enable once libmicrohttpd-dev has been updated.
|
||||||
|
#WORKDIR /usr/src/stabber
|
||||||
|
#RUN ./bootstrap.sh
|
||||||
|
#RUN ./configure --prefix=/usr --disable-dependency-tracking
|
||||||
|
#RUN make
|
||||||
|
#RUN make install
|
||||||
|
|
||||||
|
WORKDIR /usr/src/libmesode
|
||||||
|
RUN ./bootstrap.sh
|
||||||
|
RUN ./configure --prefix=/usr
|
||||||
|
RUN make
|
||||||
|
RUN make install
|
||||||
|
|
||||||
|
WORKDIR /usr/src/profanity
|
||||||
|
COPY . /usr/src/profanity
|
Loading…
Reference in New Issue
Block a user