From 20b87ddada5f9799c18fea15ce2390c48ff459cf Mon Sep 17 00:00:00 2001
From: Maximilian Gerhardt <maximilian.gerhardt@rub.de>
Date: Mon, 13 Mar 2023 00:13:17 +0100
Subject: [PATCH] Update build.yml

---
 .github/workflows/build.yml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 09b6315..c59c3c5 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -12,11 +12,13 @@ jobs:
       run: sudo apt-get update && sudo apt-get install -y build-essential make libnewlib-dev gcc-riscv64-unknown-elf libusb-1.0-0-dev
     - name: Build Blink Example
       run: cd examples/blink && make V=1 -j3 blink.elf && riscv64-unknown-elf-size blink.elf && cd ../..
+    - name: Build debugprintfdemo Example
+      run: cd examples/debugprintfdemo && make V=1 -j3 debugprintfdemo.elf && riscv64-unknown-elf-size debugprintfdemo.elf && cd ../..
     # currently not compiling: __get_dscratch0() not defined.
     #- name: Build sandbox Example
     #  run: cd examples/sandbox && make V=1 -j3 sandbox.elf && riscv64-unknown-elf-size sandbox.elf && cd ../..
-    - name: Build fulldemo Example
-      run: cd examples/fulldemo && make V=1 -j3 fulldemo.elf && riscv64-unknown-elf-size fulldemo.elf && cd ../..
+    - name: Build uartdemo Example
+      run: cd examples/uartdemo && make V=1 -j3 uartdemo.elf && riscv64-unknown-elf-size uartdemo.elf && cd ../..
     - name: Build ws2812 Example
       run: cd examples/ws2812demo && make V=1 -j3 ws2812bdemo.elf && riscv64-unknown-elf-size ws2812bdemo.elf && cd ../..
   # Build using PlatformIO
-- 
GitLab