FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
edge-react-gui/scripts/gitVersionFile.ts at develop · EdgeApp/edge-react-gui · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
EdgeApp
/
edge-react-gui
Public
Notifications
You must be signed in to change notification settings
Fork
293
Star
519
Code
Issues
51
Pull requests
144
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
edge-react-gui
/
scripts
/
gitVersionFile.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
186 lines (166 loc) · 6.32 KB
Breadcrumbs
edge-react-gui
/
scripts
/
gitVersionFile.ts
Copy path
File metadata and controls
186 lines (166 loc) · 6.32 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
// This script sets up the version numbers for a release build.
//
// Run it as `node -r sucrase/register ./scripts/gitVersionFile.ts [<branch>]`
//
// Each production build has a version number and a build number.
// The version number is a human-readable string like, "1.2.3-d",
// while the build number is a machine-readable integer like 18010203,
// based on the current date and an incrementing counter.
//
// The version number comes from package.json, plus an optional suffix
// based on the current branch name, which this script takes as a parameter.
//
// Once this script determines the version information,
// it returns a JSON string with all version information.
//
/****************************************************************************/
// WARNING: This script is run from the Jenkinsfile without npm install of
// the package.json dependencies. It should require only default nodejs
// packages. It may use typescript as sucrase will be installed by the
// Jenkinsfile
/****************************************************************************/
import
childProcess
from
'child_process'
import
fs
from
'fs'
import
{
join
}
from
'path'
const
specialBranches
:
Record
<
string
,
string
>
=
{
develop
:
'-d'
,
master
:
''
,
beta
:
''
,
coinhub
:
''
,
staging
:
'-rc'
,
test
:
'-t'
,
yolo
:
'-yolo'
,
'test-cheddar'
:
'-cheddar'
,
'test-feta'
:
'-feta'
,
'test-gouda'
:
'-gouda'
,
'test-halloumi'
:
'-halloumi'
,
'test-paneer'
:
'-paneer'
}
let
_currentPath
=
__dirname
const
baseDir
=
join
(
_currentPath
,
'..'
)
const
versionFileName
=
'release-version.json'
async
function
main
(
)
:
Promise
<
void
>
{
const
cwd
=
join
(
__dirname
,
'..'
)
const
branch
=
process
.
argv
[
2
]
??
'master'
// Determine the current version:
const
packageJson
=
JSON
.
parse
(
fs
.
readFileSync
(
join
(
cwd
,
'package.json'
)
,
{
encoding
:
'utf8'
}
)
)
const
version
=
`
${
packageJson
.
version
}
${
pickVersionSuffix
(
branch
)
}
`
updateVersionFile
(
branch
,
version
)
}
function
updateVersionFile
(
branch
:
string
,
version
:
string
)
:
void
{
const
buildRepoUrl
=
process
.
env
.
BUILD_REPO_URL
??
'git@github.com:EdgeApp/edge-build-server.git'
const
githubSshKey
=
process
.
env
.
GITHUB_SSH_KEY
??
join
(
baseDir
,
'id_github'
)
// Determine the current build number:
const
pathTemp
=
buildRepoUrl
.
split
(
'/'
)
const
repo
=
pathTemp
[
pathTemp
.
length
-
1
]
.
replace
(
'.git'
,
''
)
const
repoPath
=
join
(
baseDir
,
repo
)
let
retries
=
5
while
(
--
retries
>
0
)
{
if
(
fs
.
existsSync
(
repoPath
)
)
{
call
(
`rm -rf
${
repoPath
}
`
)
}
// Clone repo
chdir
(
baseDir
)
call
(
`GIT_SSH_COMMAND="ssh -i
${
githubSshKey
}
" git clone --depth 1
${
buildRepoUrl
}
`
)
const
newBuildNum
=
pickBuildNumber
(
)
let
build
// Rm edge-build-server
const
versionFileDir
=
join
(
repoPath
,
'versionFiles'
,
branch
)
const
versionFilePath
=
join
(
versionFileDir
,
versionFileName
)
if
(
fs
.
existsSync
(
versionFilePath
)
)
{
const
result
=
fs
.
readFileSync
(
versionFilePath
,
{
encoding
:
'utf8'
}
)
const
{
build
:
previousBuild
}
=
JSON
.
parse
(
result
)
if
(
typeof
previousBuild
!==
'number'
)
throw
new
Error
(
`Invalid previous buildNum
${
previousBuild
}
`
)
// Advance by 3, not 1, so each build owns a block of three
// versionCodes: the Android split APKs add per-ABI offsets to the
// build number (universal +0, armeabi-v7a +1, arm64-v8a +2, see
// app/build.gradle), and Google Play rejects any versionCode it
// has ever seen, so consecutive builds must never overlap blocks.
// The stride must stay >= the number of APK flavors per build,
// which is pinned by the gradle splits include list. Widening the
// gap the other way, by giving the splits their own numeric range
// (build * 10 + offset) and leaving this at +1, does not work: the
// next build's universal APK would then carry a lower code than
// the previous build's splits, which Play treats as a downgrade,
// and the universal APK has to keep reporting the plain build
// number because getBuildNumber() returns the versionCode and the
// info server string-compares it against minBuildNum/maxBuildNum/
// exactBuildNum rules.
//
// Costs, both accepted: iOS build numbers share this counter and
// simply skip by 3, and same-day capacity drops from 99 builds to
// 33 before the date-shaped number bleeds into the next day's
// range. That bleed already existed at 99, and it only misreads
// the date -- build numbers stay unique and increasing either way:
build
=
Math
.
max
(
previousBuild
+
3
,
newBuildNum
)
}
else
{
build
=
newBuildNum
}
const
tryVersionFile
=
{
build
,
version
,
branch
}
call
(
`mkdir -p
${
versionFileDir
}
`
)
const
versionFileString
=
JSON
.
stringify
(
tryVersionFile
)
fs
.
writeFileSync
(
versionFilePath
,
versionFileString
,
{
encoding
:
'utf8'
}
)
fs
.
writeFileSync
(
join
(
baseDir
,
versionFileName
)
,
versionFileString
,
{
encoding
:
'utf8'
}
)
chdir
(
repoPath
)
call
(
`git add
${
versionFilePath
}
`
)
call
(
`git commit -m "Update
${
branch
}
to build
${
build
}
"`
)
try
{
call
(
`GIT_SSH_COMMAND="ssh -i
${
githubSshKey
}
" git push`
)
fs
.
writeFileSync
(
join
(
baseDir
,
versionFileName
)
,
versionFileString
,
{
encoding
:
'utf8'
}
)
process
.
exit
(
0
)
}
catch
(
e
:
any
)
{
// Error pushing file. Retry a few times
}
}
console
.
error
(
`Unable to get new version`
)
process
.
exit
(
-
1
)
}
/**
* Pick a build number based on the current date.
*/
function
pickBuildNumber
(
now
:
Date
=
new
Date
(
)
)
:
number
{
const
year
=
now
.
getFullYear
(
)
-
2000
const
month
=
now
.
getMonth
(
)
+
1
const
day
=
now
.
getDate
(
)
const
counter
=
1
return
(
year
%
100
)
*
1000000
+
month
*
10000
+
day
*
100
+
counter
}
/**
* Pick a suffix to add to the package.json version.
*/
function
pickVersionSuffix
(
branch
?:
string
)
:
string
{
if
(
branch
==
null
||
branch
===
''
)
return
''
const
specialSuffix
=
specialBranches
[
branch
]
if
(
specialSuffix
!=
null
)
return
specialSuffix
return
'-'
+
branch
.
replace
(
/
[
^
0
-
9
a
-
z
A
-
Z
]
+
/
g
,
'-'
)
}
function
chdir
(
path
:
string
)
:
void
{
_currentPath
=
path
}
function
call
(
cmdstring
:
string
)
:
void
{
childProcess
.
execSync
(
cmdstring
,
{
encoding
:
'utf8'
,
timeout
:
3600000
,
stdio
:
'inherit'
,
cwd
:
_currentPath
,
killSignal
:
'SIGKILL'
}
)
}
main
(
)
.
catch
(
(
error
:
unknown
)
=>
{
console
.
error
(
error
)
process
.
exit
(
-
1
)
}
)
Back
|
FazBrowse Home
|
New Git URL