Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rpgp version to 0.2.1 #844

Merged
merged 1 commit into from
Jun 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci_scripts/ci-prelude.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set -ex
# runtime.
DOCKER_IMAGE=${DOCKER_IMAGE:-deltachat/travis-dc-node-base:latest}
DC_CORE_VERSION=${DC_CORE_VERSION:-master}
RPGP_VERSION="v0.2.0-alpha"
RPGP_VERSION="0.2.1"


# To facilitate running locally, derive some Travis environment
Expand Down
2 changes: 1 addition & 1 deletion ci_scripts/shared-image-context/build-install-rpgp.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#/bin/bash
set -xe

_gittag="v0.2.0-alpha"
_gittag="0.2.1"

cd /tmp
git clone --branch $_gittag https://github.com/rpgp/rpgp.git
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
ENV PATH=/root/.cargo/bin:$PATH

# Install rpgp
RUN git clone https://github.com/rpgp/rpgp.git
RUN RPGP_VERSION 0.2.1
RUN git clone --branch $RPGP_VERSION --depth 1 https://github.com/rpgp/rpgp.git
RUN echo "rpgp ${RPGP_VERSION}"
RUN cd rpgp/pgp-ffi && make install
RUN ldconfig -v

Expand Down