From 06a5b53bd9a513c3ae569f8da0ef64a2e326387a Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Wed, 25 Dec 2024 19:36:52 +0100 Subject: [PATCH] CI test --- .woodpecker/test.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.woodpecker/test.yaml b/.woodpecker/test.yaml index ee09a18..83a9a0a 100644 --- a/.woodpecker/test.yaml +++ b/.woodpecker/test.yaml @@ -6,10 +6,11 @@ steps: - name: build image: debian commands: - # - sudo apt install cmocka libcmocka - - echo "binary-data-123" > executable + - sudo apt install libcmocka-dev + - echo "echo hello" > executable.sh + - chmod +x executable.sh - name: a-test-step image: golang:1.16 commands: - echo "Testing ..." - - ./executable + - ./executable.sh