From b77d86ae12756eaca37b87615113f9b2fcd0707a Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Wed, 25 Dec 2024 19:46:03 +0100 Subject: [PATCH] Tests --- .woodpecker/test.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.woodpecker/test.yaml b/.woodpecker/test.yaml index 1ac48f1..b33b0a7 100644 --- a/.woodpecker/test.yaml +++ b/.woodpecker/test.yaml @@ -8,10 +8,14 @@ steps: commands: - apt update - apt install libcmocka-dev -y + - apt install gcc -y + - apt install make -y + - make -j$(nproc) test/test.elf - echo "echo hello" > executable.sh - chmod +x executable.sh - name: a-test-step image: golang:1.16 commands: + - ./test/test.elf - echo "Testing ..." - ./executable.sh