Skip to content

Commit

Permalink
ci: remove building of stabber
Browse files Browse the repository at this point in the history
It's not run anyways.
See #789
  • Loading branch information
jubalh committed Jan 12, 2022
1 parent 50f0cfd commit 992f5b8
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions Dockerfile.arch
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ RUN pacman -U --noconfirm libstrophe-git/libstrophe-git-*.pkg.tar.zst
RUN pacman -U --noconfirm libsignal-protocol-c/libsignal-protocol-c-*.pkg.tar.zst

WORKDIR /usr/src
RUN git clone https://github.com/boothj5/stabber
#RUN git clone https://github.com/boothj5/stabber

WORKDIR /usr/src/stabber
RUN ./bootstrap.sh
RUN ./configure --prefix=/usr --disable-dependency-tracking
RUN make
RUN make install
#WORKDIR /usr/src/stabber
#RUN ./bootstrap.sh
#RUN ./configure --prefix=/usr --disable-dependency-tracking
#RUN make
#RUN make install

WORKDIR /usr/src/profanity
COPY . /usr/src/profanity
12 changes: 6 additions & 6 deletions Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
RUN mkdir -p /usr/src/{stabber,libstrophe,profanity}
WORKDIR /usr/src

RUN git clone https://github.com/boothj5/stabber
#RUN git clone https://github.com/boothj5/stabber
RUN git clone https://github.com/strophe/libstrophe

WORKDIR /usr/src/stabber
RUN ./bootstrap.sh
RUN ./configure --prefix=/usr --disable-dependency-tracking
RUN make
RUN make install
#WORKDIR /usr/src/stabber
#RUN ./bootstrap.sh
#RUN ./configure --prefix=/usr --disable-dependency-tracking
#RUN make
#RUN make install

WORKDIR /usr/src/libstrophe
RUN ./bootstrap.sh
Expand Down
14 changes: 7 additions & 7 deletions Dockerfile.fedora
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ ENV LC_ALL en_US.UTF-8
RUN mkdir -p /usr/src
WORKDIR /usr/src

RUN mkdir -p /usr/src/stabber
RUN git clone https://github.com/boothj5/stabber
WORKDIR /usr/src/stabber
RUN ./bootstrap.sh
RUN ./configure --prefix=/usr --disable-dependency-tracking
RUN make
RUN make install
#RUN mkdir -p /usr/src/stabber
#RUN git clone https://github.com/boothj5/stabber
#WORKDIR /usr/src/stabber
#RUN ./bootstrap.sh
#RUN ./configure --prefix=/usr --disable-dependency-tracking
#RUN make
#RUN make install

WORKDIR /usr/src
RUN mkdir -p /usr/src/libstrophe
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
RUN mkdir -p /usr/src/{stabber,libstrophe,profanity}
WORKDIR /usr/src

RUN git clone https://github.com/boothj5/stabber
#RUN git clone https://github.com/boothj5/stabber
RUN git clone https://github.com/strophe/libstrophe

# TODO: Re-enable once libmicrohttpd-dev has been updated.
Expand Down

0 comments on commit 992f5b8

Please sign in to comment.