File tree 4 files changed +29
-7
lines changed
4 files changed +29
-7
lines changed Original file line number Diff line number Diff line change 4
4
all : build
5
5
6
6
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
11
8
12
9
modelgen :
13
10
@if [ -z " ` which modelgen` " ]; then go get -v github.com/contiv/modelgen; fi
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -euo pipefail
4
+
1
5
$GOPATH /bin/modelgen ./ ./
2
- gofmt -w * .go
3
- gofmt -w client/* .go
6
+ gofmt -s - w * .go
7
+ gofmt -s - w client/* .go
Original file line number Diff line number Diff line change
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/
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ set -euo pipefail
5
5
docker build -t contiv/spec .
6
6
cid=$( docker run -itd contiv/spec)
7
7
docker cp ${cid} :/contiv/contiv.html .
8
- docker rm -f -v ${cid}
8
+ docker rm -fv ${cid}
You can’t perform that action at this time.
0 commit comments