From 51cdffd591e50cb8c8a31fe0ff02f7fea2d554f6 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Sun, 7 May 2023 20:28:45 +0300 Subject: [PATCH] Create a configuration template for Codeberg CI (.woodpecker.yml) --- .woodpecker.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..5210bdd --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,13 @@ +# .woodpecker.yml +pipeline: + build: + image: debian + commands: + - echo "This is the build step" + - ls -la + a-test-step: + image: debian + commands: + - echo "Testing.." + - ls -la + - cat ./bin/kconfig-hardened-check -- 2.31.1