build-unit-test-docker: Add span-lite
Spans are nice to have as they are a c++20 approved, generalized version
of a mutable view of arbitrary data types. This implementation is
minimal and mostly conforms to the standard, with a clear migration path
when we have c++20 available. This will be first used by stdplus.
Change-Id: I8219f1cf452919044970841d7561c50ebc8e81a0
Signed-off-by: William A. Kennington III <wak@google.com>
diff --git a/build-unit-test-docker.sh b/build-unit-test-docker.sh
index 1599d0d..8651888 100755
--- a/build-unit-test-docker.sh
+++ b/build-unit-test-docker.sh
@@ -105,6 +105,7 @@
[linux-headers]=8bf6567e77f7aa68975b7c9c6d044bba690bf327
# Snapshot from 2019-09-03
[libvncserver]=1354f7f1bb6962dab209eddb9d6aac1f03408110
+ [span-lite]=v0.6.0
# version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
[tinyxml2]=37bc3aca429f0164adf68c23444540b4a24b5778
)
@@ -290,6 +291,15 @@
RUN mkdir ${PREFIX}/include/nlohmann/ && \
curl -L -o ${PREFIX}/include/nlohmann/json.hpp https://github.com/nlohmann/json/releases/download/${PKG_REV['json']}/json.hpp
+FROM openbmc-base as openbmc-span-lite
+RUN curl -L https://github.com/martinmoene/span-lite/archive/${PKG_REV['span-lite']}.tar.gz | tar -xz && \
+cd span-lite-* && \
+mkdir build && \
+cd build && \
+cmake ${CMAKE_FLAGS[@]} -DSPAN_LITE_OPT_BUILD_TESTS=OFF .. && \
+make -j$(nproc) && \
+make install
+
FROM openbmc-base as openbmc-linux-headers
RUN curl -L https://github.com/openbmc/linux/archive/${PKG_REV['linux-headers']}.tar.gz | tar -xz && \
cd linux-* && \