diff options
| -rw-r--r-- | Dockerfile | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -20,13 +20,17 @@ RUN apt-get update -qq > /dev/null && \ zlib1g-dev > /dev/null RUN mkdir /opt/laminar -RUN git clone -q https://github.com/ohwgiles/laminar /opt/laminar/src +# b1ae75e links a SQLite3::SQLite3 target that FindSQLite3 doesn't define +ARG LAMINAR_REV=3392b899b201568b5ecb1850d1d166d5466b8fa4 +RUN git clone -q https://github.com/ohwgiles/laminar /opt/laminar/src && \ + git -C /opt/laminar/src checkout -q ${LAMINAR_REV} -RUN cmake -B /opt/laminar/build -S /opt/laminar/src -G Ninja \ +RUN bash -o pipefail -c '\ + cmake -B /opt/laminar/build -S /opt/laminar/src -G Ninja \ -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr \ -Wno-dev --log-level=WARNING > /dev/null && \ - cmake --build /opt/laminar/build 2>&1 | grep -v "^\[" || true && \ - cmake --install /opt/laminar/build --strip > /dev/null + cmake --build /opt/laminar/build 2>&1 | { grep -v "^\\[" || true; } && \ + cmake --install /opt/laminar/build --strip > /dev/null' # -- </laminar_bin> -- # -- <ci_base> -- |
