From 5df3f54ba58d102145082a1039f6b7483ae7888a Mon Sep 17 00:00:00 2001 From: Fischer Moseley <42497969+fischermoseley@users.noreply.github.com> Date: Wed, 15 Feb 2023 14:16:43 -0500 Subject: [PATCH] add printing build log to github actions --- .github/workflows/build_examples.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_examples.yml b/.github/workflows/build_examples.yml index e58e564..36c40e8 100644 --- a/.github/workflows/build_examples.yml +++ b/.github/workflows/build_examples.yml @@ -24,4 +24,8 @@ jobs: - name: Build Verilog working-directory: examples/counter - run: mkdir obj && python3 lab-bc.py \ No newline at end of file + run: mkdir obj && python3 lab-bc.py + + - name: Print build.log + working-directory: examples/counter + run: cat obj/build.log \ No newline at end of file