Skip to content

Commit b379402

Browse files
committed
cmdlib: Support old FCOS version in parsing
Ensure compatibility with older and newer versions. We have a few builds in testing stream with a different format. An example is 30.20190712.0
1 parent dcce259 commit b379402

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/cosalib/cmdlib.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -343,8 +343,9 @@ def parse_fcos_version_to_timestamp(version):
343343
'''
344344
Parses an FCOS build ID and verifies the versioning is accurate. Then
345345
it verifies that the parsed timestamp has %Y%m%d format and returns that.
346+
Also, parses older format for versions, for eg. 30.20190712.0
346347
'''
347-
m = re.match(r'^([0-9]{2})\.([0-9]{8})\.([0-9]+|dev)\.([0-9]+)$', version)
348+
m = re.match(r'^([0-9]{2})\.([0-9]{8})\.([0-9]+|dev)(?:\.([0-9]+))?$', version)
348349
if m is None:
349350
raise Exception(f"Incorrect versioning for FCOS build {version}")
350351
try:

0 commit comments

Comments
 (0)