From 69f40d1f50538d07527d06a117e2f2d4a7f64494 Mon Sep 17 00:00:00 2001 From: MalikBurton Date: Wed, 12 Aug 2020 13:03:15 -0400 Subject: [PATCH] Created ci directory for continuous integration scripts --- ci/test_driver.sh | 3 +++ ci/test_opencl.sh | 3 +++ ci/test_riscv_isa.sh | 3 +++ ci/test_runtime.sh | 3 +++ driver/tests/Makefile | 2 +- 5 files changed, 13 insertions(+), 1 deletion(-) create mode 100755 ci/test_driver.sh create mode 100755 ci/test_opencl.sh create mode 100755 ci/test_riscv_isa.sh create mode 100755 ci/test_runtime.sh diff --git a/ci/test_driver.sh b/ci/test_driver.sh new file mode 100755 index 00000000..d35eb276 --- /dev/null +++ b/ci/test_driver.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +cd ../driver/tests && make run -f Makefile diff --git a/ci/test_opencl.sh b/ci/test_opencl.sh new file mode 100755 index 00000000..a2474d71 --- /dev/null +++ b/ci/test_opencl.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +cd ../benchmarks/opencl && make run -f Makefile diff --git a/ci/test_riscv_isa.sh b/ci/test_riscv_isa.sh new file mode 100755 index 00000000..6f54ca70 --- /dev/null +++ b/ci/test_riscv_isa.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +cd ../benchmarks/riscv_tests/isa && make run -f Makefile diff --git a/ci/test_runtime.sh b/ci/test_runtime.sh new file mode 100755 index 00000000..eb5cf002 --- /dev/null +++ b/ci/test_runtime.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +cd ../runtime/tests && make run -f Makefile diff --git a/driver/tests/Makefile b/driver/tests/Makefile index c2fa9b51..b7371ee1 100644 --- a/driver/tests/Makefile +++ b/driver/tests/Makefile @@ -5,7 +5,7 @@ all: run: $(MAKE) -C basic run-rtlsim - $(MAKE) -C basic run-simx + #$(MAKE) -C basic run-simx $(MAKE) -C demo run-rtlsim $(MAKE) -C demo run-simx $(MAKE) -C dogfood run-rtlsim