unit-test: add valijson

Add the valijson package, used by entity-manager.  entity-manager is
able to pass CI today with vendoring.  This patch removes the need for
vendoring.

Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Change-Id: Icc3a6567dfb31f04cdbed1f5061dd89d21dc0275
diff --git a/build-unit-test-docker.sh b/build-unit-test-docker.sh
index 9acca5c..73581df 100755
--- a/build-unit-test-docker.sh
+++ b/build-unit-test-docker.sh
@@ -109,6 +109,8 @@
   [span-lite]=v0.6.0
   # version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
   [tinyxml2]=37bc3aca429f0164adf68c23444540b4a24b5778
+  # version from meta-openembedded/meta-oe/recipes-devtools/valijson/valijson_git.bb
+  [valijson]=c2f22fddf599d04dc33fcd7ed257c698a05345d9
 )
 
 # Turn the depcache into a dictionary so we can reference the HEAD of each repo
@@ -333,6 +335,15 @@
 make -j$(nproc) && \
 make install
 
+FROM openbmc-base as openbmc-valijson
+RUN curl -L https://github.com/tristanpenman/valijson/archive/${PKG_REV['valijson']}.tar.gz | tar -xz && \
+cd valijson-* && \
+mkdir build && \
+cd build && \
+cmake ${CMAKE_FLAGS[@]} -DINSTALL_HEADERS=1 -DBUILD_TESTS=0 .. && \
+make -j$(nproc) && \
+make install
+
 FROM openbmc-base as openbmc-libvncserver
 RUN curl -L https://github.com/LibVNC/libvncserver/archive/${PKG_REV['libvncserver']}.tar.gz | tar -xz && \
 cd libvncserver-* && \