From b02640a02697631a0aca11dee21527903d27c72b Mon Sep 17 00:00:00 2001 From: Alejandro Saucedo Date: Sat, 26 Nov 2022 15:55:19 +0000 Subject: [PATCH] Added initial example for automated CI Signed-off-by: Alejandro Saucedo --- .github/workflows/cpp_examples.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cpp_examples.yml b/.github/workflows/cpp_examples.yml index 92b5a3d2b..308b3252d 100644 --- a/.github/workflows/cpp_examples.yml +++ b/.github/workflows/cpp_examples.yml @@ -32,5 +32,6 @@ jobs: - name: Run tests run: | # Check that the expected output is printed - ./examples/array_multiplication/build/src/kompute_array_mult + ./examples/array_multiplication/build/src/kompute_array_mult | \ + tee $(tty) | grep -q "Output: { 0 4 12 }"