Skip to content

Commit 996a9cd

Browse files
committed
Cleaned up build script + raml2html is now run automatically after builds
Signed-off-by: Bill Robinson <[email protected]>
1 parent 386495a commit 996a9cd

File tree

4 files changed

+29
-7
lines changed

4 files changed

+29
-7
lines changed

Makefile

+1-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44
all: build
55

66
build: modelgen
7-
bash generate.sh
8-
go install ./ ./client/
9-
docker run --rm -u $(shell id -u):$(shell id -g) -v $(PWD):/files -w /files/spec ruby:2.4.0-slim /usr/local/bin/ruby contivModel2raml.rb
10-
mv spec/netmaster.raml ./spec/contiv/libraries/netmaster.raml
7+
@bash ./scripts/build.sh
118

129
modelgen:
1310
@if [ -z "`which modelgen`" ]; then go get -v github.com/contiv/modelgen; fi

generate.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#!/bin/bash
2+
3+
set -euo pipefail
4+
15
$GOPATH/bin/modelgen ./ ./
2-
gofmt -w *.go
3-
gofmt -w client/*.go
6+
gofmt -s -w *.go
7+
gofmt -s -w client/*.go

scripts/build.sh

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/bin/bash
2+
3+
set -euo pipefail
4+
5+
# build and install the code
6+
bash generate.sh
7+
go install ./ ./client/
8+
9+
# regenerate netmaster.raml
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
15+
mv spec/netmaster.raml ./spec/contiv/libraries/netmaster.raml
16+
17+
# run the raml2html tool to generate docs under spec/docs
18+
cd spec
19+
make docs
20+
mkdir -p docs
21+
mv contiv.html docs/

spec/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -euo pipefail
55
docker build -t contiv/spec .
66
cid=$(docker run -itd contiv/spec)
77
docker cp ${cid}:/contiv/contiv.html .
8-
docker rm -f -v ${cid}
8+
docker rm -fv ${cid}

0 commit comments

Comments
 (0)