mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
fix CI
This commit is contained in:
parent
c90b1c1f3e
commit
8beac4a394
2 changed files with 5 additions and 5 deletions
|
@ -18,8 +18,7 @@ docker-dev:
|
|||
script:
|
||||
- docker build -t ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV} .
|
||||
tags:
|
||||
- shell
|
||||
- linux
|
||||
- docker
|
||||
|
||||
# Stage: build
|
||||
##############################################################################
|
||||
|
|
|
@ -62,12 +62,13 @@ RUN yum -y install \
|
|||
jansson-devel \
|
||||
openssl-devel \
|
||||
curl-devel \
|
||||
lapack-devel
|
||||
lapack-devel \
|
||||
libuuid-devel
|
||||
|
||||
# Build & Install Fmtlib
|
||||
RUN git clone --recursive https://github.com/fmtlib/fmt.git /tmp/fmt && \
|
||||
mkdir -p /tmp/fmt/build && cd /tmp/fmt/build && \
|
||||
git checkout 5.2.0 && \
|
||||
git checkout 5.3.0 && \
|
||||
cmake3 -DBUILD_SHARED_LIBS=1 .. && \
|
||||
make -j$(nproc) install && \
|
||||
rm -rf /tmp/fmt
|
||||
|
@ -75,7 +76,7 @@ RUN git clone --recursive https://github.com/fmtlib/fmt.git /tmp/fmt && \
|
|||
# Build & Install spdlog
|
||||
RUN git clone --recursive https://github.com/gabime/spdlog.git /tmp/spdlog && \
|
||||
mkdir -p /tmp/spdlog/build && cd /tmp/spdlog/build && \
|
||||
git checkout v1.3.1 && \
|
||||
git checkout v1.6.0 && \
|
||||
cmake3 -DSPDLOG_FMT_EXTERNAL=ON -DSPDLOG_BUILD_BENCH=OFF .. && \
|
||||
make -j$(nproc) install && \
|
||||
rm -rf /tmp/spdlog
|
||||
|
|
Loading…
Add table
Reference in a new issue