File tree 3 files changed +37
-29
lines changed
3 files changed +37
-29
lines changed Original file line number Diff line number Diff line change @@ -6,30 +6,7 @@ set -euo pipefail
6
6
bash generate.sh
7
7
go install ./ ./client/
8
8
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
17
10
pushd spec
18
11
make docs
19
12
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
Original file line number Diff line number Diff line change 2
2
3
3
set -euo pipefail
4
4
5
- IMAGE_NAME=" contiv/raml2html"
6
-
7
5
mkdir -p docs
8
6
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
10
24
11
25
echo " generating netmaster docs"
12
26
docker run --rm \
13
27
-u $( id -u) :$( id -g) \
14
28
-v $( pwd) :/contiv \
15
- $IMAGE_NAME -i netmaster.raml -o docs/contiv.html
29
+ $RAML_IMAGE_NAME -i netmaster.raml -o docs/contiv.html
16
30
17
31
echo " generating auth_proxy docs"
18
32
docker run --rm \
19
33
-u $( id -u) :$( id -g) \
20
34
-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
22
36
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.
You can’t perform that action at this time.
0 commit comments