-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathgenerator.py
More file actions
63 lines (42 loc) · 1.33 KB
/
generator.py
File metadata and controls
63 lines (42 loc) · 1.33 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
##########################################################
#### 1.3 Cal release 1.20
# w m
# 18->19 x x
# 19->20 x x
# 20->21 x Y
#### 1.4 Dak release 1.21
# w m
# 18->19 x x
# 19->20 x x
# 20->21 x Y <--
############################################################
# calgary
tkg3 = ["1.18.0", "1.19.0", "1.20.0"]
### 1.18.0 ---> upgrade ----> x
### 1.19.0 ---> upgrade ----> x
### 1.20.0 ---> upgrade ----> 1.21.0
tkg3_tkr = {
"1.18.0":[ "ant", "cal", "fl" ],
"1.19.0":[ "ant 1.0 2.0 3.0", "cal 1.0", "fl" ],
"1.20.0":[ "ant 1.0 2.0 3.0", "cal", "fl" ]
}
# dakar
tkg4 = ["1.19.0", "1.20.0", "1.21.0"]
tkg4_tkr = {
"1.19.0":[ "ant ( 1.0, 1.1 ) ", "cal ( 1.0, 1.1 )", "fl"], # pinnipied, ako both bump minors
"1.20.0":[ "ant ( 2.0 2.1) ", "cal", "fl" ]
"1.21.0":[ "ant", "cal", "fl", "d" ]
}
tkg5 = ["1.20.0", "1.21.0", "1.22.0"]
############################################
# Week 1
## upstream patch 18.1
## upstream patch 19.1
## upstream patch 20.1
# Week 2
## upstream patch 20.1.1
############################################
# aggregate
tkg3 = ["1.18.0", "1.19.0", "1.20.0"] + ["1.18.1", "1.19.1", "1.20.1"]
tkg4 = ["1.19.0", "1.20.0", "1.21.0"] + ["1.19.1", "1.20.1"]
tkg5 = ["1.20.0", "1.21.0", "1.22.0"] + ["1.20.1"]