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

Merge versioning and travis build config #3540

Merged
merged 12 commits into from
Oct 8, 2019
Prev Previous commit
Next Next commit
Add static libgit2 for fedora (dynamic also builds, but is switched of)
  • Loading branch information
KjellMorgenstern committed Oct 7, 2019
commit 61ad6a3af6f12ad6e5065b753a98963265a2ccbb
9 changes: 9 additions & 0 deletions docker/Dockerfile.fedora
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,12 @@ USER conan
# No SHA verification for now. Will be automated by Conan in the future.
RUN set -xe \
&& wget -q -O - https://dl.bintray.com/boostorg/release/1.70.0/source/boost_1_70_0.tar.bz2 | tar xj

RUN set -xe \
&& wget -q -O - https://github.com/libgit2/libgit2/archive/v0.28.1.tar.gz | tar xz \
&& mv libgit2-0.28.1 libgit2 \
&& mkdir libgit2/build \
&& cd libgit2/build \
&& cmake -D BUILD_SHARED_LIBS=OFF .. \
&& cmake --build . -- -j4 \
&& cd ../../