aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Quigley <jim.quigley@arm.com>2020-10-15 12:49:44 +0100
committernicola-mazzucato-arm <42373140+nicola-mazzucato-arm@users.noreply.github.com>2020-10-15 17:45:38 +0100
commit8f3ff1eddde4f556d20eaf1b9876d964c7d11199 (patch)
treeb135095faea551906d78fcf4dc11083c7f808b02
parent084f9d4edade54160d16265b0108942709b2e7aa (diff)
tools: Add rcar platform to the CI
This patch adds the rcar platform to the CI tests. Change-Id: I3a83f6386ad1fcde2df07fe58e249a662b8b1760 Signed-off-by: Jim Quigley <jim.quigley@arm.com>
-rwxr-xr-xtools/ci.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/ci.py b/tools/ci.py
index 3587a934..0116c30e 100755
--- a/tools/ci.py
+++ b/tools/ci.py
@@ -428,6 +428,24 @@ def main():
result = subprocess.call(cmd, shell=True)
results.append(('Product morello release build (ARM)', result))
+ banner('Test building rcar product')
+
+ cmd = \
+ 'CC=aarch64-none-elf-gcc ' \
+ 'PRODUCT=rcar ' \
+ 'MODE=debug ' \
+ 'make clean all -j'
+ result = subprocess.call(cmd, shell=True)
+ results.append(('Product rcar debug build (ARM)', result))
+
+ cmd = \
+ 'CC=aarch64-none-elf-gcc ' \
+ 'PRODUCT=rcar ' \
+ 'MODE=release ' \
+ 'make clean all -j'
+ result = subprocess.call(cmd, shell=True)
+ results.append(('Product rcar release build (ARM)', result))
+
banner('Tests summary')
total_success = 0