[1f655f]: / codesys-ide / scripts / build-bootapp.py  Maximize  Restore  History

Download this file

55 lines (44 with data), 2.0 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
import sys, os
import helper
# compile category GUID
CompileCategory = Guid("{97F48D64-A2A3-4856-B640-75C046E37EA9}")
class SearchBuildDo(helper.SearchBuild):
# Build rules for:
# - *.project -> *.app (boot application)
def doit(self, filename):
artifacts = list()
if filename.endswith(".project"):
destination = filename.replace(".project", ".app")
crcfile = filename.replace(".project", ".crc")
artifacts.append(destination)
artifacts.append(crcfile)
print("%s -> %s\n" % (filename, destination))
proj = projects.open(filename)
helper.update_device(proj, device_repository)
helper.install_missing_libraries(proj, librarymanager)
try:
proj.active_application.create_boot_application(os.path.basename(destination))
#proj.active_application.create_boot_application(destination)
except:
print("Error: Creation of bootapplication failed")
# Get message objects which contain all the data
severities = {
Severity.FatalError : "Fatal error", Severity.Error : "Error",
Severity.Warning : "Warning", Severity.Information : "Information",
Severity.Text : "Text"
}
msgs = system.get_message_objects(CompileCategory, Severity.FatalError|Severity.Error)
xError = False
for msg in msgs:
sev = severities[msg.severity]
if msg.severity == Severity.FatalError:
xError = True
print("%s %s%s: %s" % (sev, msg.prefix, msg.number, msg.text))
if xError:
return None
proj.close()
return artifacts
scriptpath = os.path.abspath(os.path.dirname(sys.argv[0]))
sb = SearchBuildDo()
sb.search(".project", ".")
sb.save(".", ".drone-artifacts")