aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJim Quigley <jim.quigley@arm.com>2020-02-17 15:47:51 +0000
committerChris Kay <chris@cjkay.com>2020-02-24 19:56:00 +0000
commit3970a6f995d1909b29b83ff9542a7433ce8d6946 (patch)
tree1206b509bb6c2735212b8b46da3cf6f822e21769 /tools
parent358c8140980c6c09237cf657d29eb4b641bf4b34 (diff)
sgm776: Add sgm776 platform
This patch adds support for the sgm776 platform. Change-Id: I62db113e37b1e688957a982c13f13c58cf995a4c Signed-off-by: Jim Quigley <jim.quigley@arm.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/ci.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/tools/ci.py b/tools/ci.py
index b61e80c6..ed359da6 100755
--- a/tools/ci.py
+++ b/tools/ci.py
@@ -297,6 +297,40 @@ def main():
result = subprocess.call(cmd, shell=True)
results.append(('Product synquacer debug build (ARM)', result))
+ banner('Test building sgm776 product')
+
+ cmd = \
+ 'CC=arm-none-eabi-gcc ' \
+ 'PRODUCT=sgm776 ' \
+ 'MODE=release ' \
+ 'make clean all'
+ result = subprocess.call(cmd, shell=True)
+ results.append(('Product sgm776 release build (GCC)', result))
+
+ cmd = \
+ 'CC=armclang ' \
+ 'PRODUCT=sgm776 ' \
+ 'MODE=release ' \
+ 'make clean all'
+ result = subprocess.call(cmd, shell=True)
+ results.append(('Product sgm776 release build (ARM)', result))
+
+ cmd = \
+ 'CC=arm-none-eabi-gcc ' \
+ 'PRODUCT=sgm776 ' \
+ 'MODE=debug ' \
+ 'make clean all'
+ result = subprocess.call(cmd, shell=True)
+ results.append(('Product sgm776 debug build (GCC)', result))
+
+ cmd = \
+ 'CC=armclang ' \
+ 'PRODUCT=sgm776 ' \
+ 'MODE=debug ' \
+ 'make clean all'
+ result = subprocess.call(cmd, shell=True)
+ results.append(('Product sgm776 debug build (ARM)', result))
+
banner('Tests summary')
total_success = 0