Skip to content

Commit 23632ea

Browse files
committedNov 3, 2017
update orr-portal and orr-ont pointers and build v3.6.8
1 parent c3c2f28 commit 23632ea

File tree

3 files changed

+28
-15
lines changed

3 files changed

+28
-15
lines changed
 

‎README.md

+26-13
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,35 @@ Actual code development occurs within those repos.
2828
Two deployable ORR artifacts are built in this repo: WAR and Docker image.
2929
The steps are:
3030

31-
- `$ git submodule foreach "(git checkout master; git pull)"`
32-
- Check submodule versions and determine version for integrated system
33-
(as an example, `3.x.y` in what follows).
34-
- `$ ./build.sh 3.x.y`
31+
```
32+
git submodule foreach "(git checkout master; git pull)"
33+
```
34+
35+
Check submodule versions and determine version for integrated system,
36+
for example, `3.x.y`, which we assumed captured in `ORR_VERSION` in what follows.
37+
38+
```
39+
ORR_VERSION=3.x.y
40+
./build.sh ${ORR_VERSION}
41+
```
3542

3643
This creates:
37-
- WAR: `orr-ont/target/scala-2.11/orr-ont_2.11-3.x.y.war`
38-
- Docker image: `mmisw/orr:3.x.y`
44+
- WAR: `orr-ont/target/scala-2.11/orr-ont_2.11-${ORR_VERSION}.war`
45+
- Docker image: `mmisw/orr:${ORR_VERSION}`
3946

4047
Publishing the Docker image:
41-
- `docker login`
42-
- `docker push mmisw/orr:3.x.y`
48+
49+
```
50+
docker login
51+
docker push mmisw/orr:${ORR_VERSION}
52+
```
4353

4454
Finally:
45-
- `git add -u`
46-
- `git commit -m "update orr-portal and orr-ont pointers and build v3.x.y"`
47-
- `git push origin master`
48-
- `git tag v3.x.y"`
49-
- `git push origin v3.x.y`
55+
56+
```
57+
git add -u
58+
git commit -m "update orr-portal and orr-ont pointers and build v${ORR_VERSION}"
59+
git push origin master
60+
git tag v${ORR_VERSION}"
61+
git push origin v${ORR_VERSION}
62+
```

‎orr-portal

0 commit comments

Comments
 (0)
Please sign in to comment.