Skip to content

Commit 1cdf3ac

Browse files
committed
Move docs-related code into the docs build script, rename contivModel2raml.rb -> generate_raml.rb
Signed-off-by: Bill Robinson <[email protected]>
1 parent 2015959 commit 1cdf3ac

File tree

3 files changed

+37
-29
lines changed

3 files changed

+37
-29
lines changed

scripts/build.sh

+1-24
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,7 @@ set -euo pipefail
66
bash generate.sh
77
go install ./ ./client/
88

9-
# regenerate libraries/netmaster.raml which holds the type netmaster type data
10-
docker run --rm \
11-
-u $(id -u):$(id -g) \
12-
-v $(pwd):/files \
13-
-w /files/spec \
14-
ruby:2.4.0-slim /usr/local/bin/ruby contivModel2raml.rb ./netmaster/libraries/netmaster.raml
15-
16-
# run the raml2html tool to generate docs under spec/docs
9+
# update the docs based on the latest code
1710
pushd spec
1811
make docs
1912
popd
20-
21-
# because we have to do some tidying up of the output HTML and it requires some
22-
# external dependencies, we use a small Docker image to do it.
23-
# this image uses the same ruby:2.4.0-slim base as above.
24-
IMAGE_NAME="contiv_api_documentation_cleanup"
25-
26-
if [[ "$(docker images -q $IMAGE_NAME:latest 2>/dev/null)" == "" ]]; then
27-
docker build -t $IMAGE_NAME -f spec/Dockerfile.cleanup .
28-
fi
29-
30-
echo "Cleaning up HTML output"
31-
docker run --rm \
32-
-u $(id -u):$(id -g) \
33-
-v $(pwd):/files \
34-
-w /files/spec \
35-
$IMAGE_NAME /usr/local/bin/ruby cleanup.rb

spec/build.sh

+36-5
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,52 @@
22

33
set -euo pipefail
44

5-
IMAGE_NAME="contiv/raml2html"
6-
75
mkdir -p docs
86

9-
docker build -t $IMAGE_NAME .
7+
#
8+
# regenerate libraries/netmaster.raml which holds the type netmaster type data
9+
#
10+
docker run --rm \
11+
-u $(id -u):$(id -g) \
12+
-v $(pwd)/../:/files \
13+
-w /files/spec \
14+
ruby:2.4.0-slim /usr/local/bin/ruby generate_raml.rb ./netmaster/libraries/netmaster.raml
15+
16+
#
17+
# convert the raml into HTML output
18+
#
19+
RAML_IMAGE_NAME="contiv/raml2html"
20+
21+
if [[ "$(docker images -q $RAML_IMAGE_NAME:latest 2>/dev/null)" == "" ]]; then
22+
docker build -t $RAML_IMAGE_NAME .
23+
fi
1024

1125
echo "generating netmaster docs"
1226
docker run --rm \
1327
-u $(id -u):$(id -g) \
1428
-v $(pwd):/contiv \
15-
$IMAGE_NAME -i netmaster.raml -o docs/contiv.html
29+
$RAML_IMAGE_NAME -i netmaster.raml -o docs/contiv.html
1630

1731
echo "generating auth_proxy docs"
1832
docker run --rm \
1933
-u $(id -u):$(id -g) \
2034
-v $(pwd):/contiv \
21-
$IMAGE_NAME -i auth_proxy.raml -o docs/auth_proxy.html
35+
$RAML_IMAGE_NAME -i auth_proxy.raml -o docs/auth_proxy.html
2236

37+
#
38+
# because we have to do some tidying up of the output HTML and it requires some
39+
# external dependencies, we use a small Docker image to do it.
40+
# this image uses the same ruby:2.4.0-slim base as above.
41+
#
42+
CLEANUP_IMAGE_NAME="contiv/api_documentation_cleanup"
43+
44+
if [[ "$(docker images -q $CLEANUP_IMAGE_NAME:latest 2>/dev/null)" == "" ]]; then
45+
docker build -t $CLEANUP_IMAGE_NAME -f Dockerfile.cleanup .
46+
fi
47+
48+
echo "Cleaning up HTML output"
49+
docker run --rm \
50+
-u $(id -u):$(id -g) \
51+
-v $(pwd):/files \
52+
-w /files \
53+
$CLEANUP_IMAGE_NAME /usr/local/bin/ruby cleanup.rb
File renamed without changes.

0 commit comments

Comments
 (0)