mirror of
https://github.com/ceph/ceph
synced 2024-12-18 17:37:38 +00:00
8ff1e6b399
Build jsonnet and jb in the testso that we can build ceph without internet access and still be able to run the test needed for monitoring using jsonnet tools. Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@cern.ch>
9 lines
233 B
Bash
Executable File
9 lines
233 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
JSONNET_VERSION="v0.4.0"
|
|
OUTPUT_DIR=${1:-$(pwd)}
|
|
|
|
git clone -b ${JSONNET_VERSION} --depth 1 https://github.com/jsonnet-bundler/jsonnet-bundler
|
|
make -C jsonnet-bundler build
|
|
mv jsonnet-bundler/_output/jb ${OUTPUT_DIR}
|