blob: 50010e56287bd2b6f6022917659af122f1288240 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# openshift-ansible-bin RPM Build instructions
We use tito to make building and tracking revisions easy.
For more information on tito, please see the [Tito home page](http://rm-rf.ca/tito "Tito home page").
## Build a test package (no tagging needed)
```
tito build --test --rpm
```
## Tag a new build (bumps version number and adds log entries)
```
tito tag
```
Follow the on screen tito instructions.
## Build a new package based on the latest tag information
```
tito build --rpm
```
|