From aa3cf867a3fc38d156cff19fa70d2ab2dcfdfbb3 Mon Sep 17 00:00:00 2001 From: Automation Date: Thu, 14 Aug 2025 23:33:37 +0000 Subject: [PATCH] Use absolute minimal pipeline syntax - Simplified to smallest possible Woodpecker CI 3.8 pipeline - Single step with Alpine echo test - Should work with new syntax format --- .woodpecker.yml | 23 +++-------------------- 1 file changed, 3 insertions(+), 20 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 6c28c57..f179014 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,22 +1,5 @@ -skip_clone: true - steps: - - name: simple-test - image: alpine:latest + hello: + image: alpine commands: - - echo "🎉 === GameAdm CI Pipeline Test ===" - - echo "Woodpecker CI 3.8.0 is working!" - - echo "Agent successfully executing commands" - - echo "Repository: pp1l/gameadm" - - echo "Pipeline automation working perfectly!" - - sleep 2 - - echo "✅ Pipeline test completed successfully!" - - - name: advanced-test - image: alpine:latest - commands: - - echo "🔧 Advanced test starting..." - - apk add --no-cache curl - - echo "Curl installed successfully" - - curl -s https://httpbin.org/json | head -5 - - echo "✅ Advanced test completed!" \ No newline at end of file + - echo "Hello World" \ No newline at end of file