From 541fce1ccda6128d2cd8d538f6723f528d777840 Mon Sep 17 00:00:00 2001 From: Automation Date: Thu, 14 Aug 2025 23:32:15 +0000 Subject: [PATCH] Test pipeline without clone - Skip clone step to test basic pipeline functionality - Focus on verifying that Woodpecker CI 3.8.0 + Podman works - Simple tests to confirm agent execution - Will add back clone once basic functionality is proven --- .woodpecker.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 4368a72..6c28c57 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,22 +1,22 @@ -clone: - git: - image: alpine/git:latest +skip_clone: true steps: - - name: test-syntax + - name: simple-test image: alpine:latest commands: - - echo "=== GameAdm CI Pipeline ===" - - echo "Testing repository structure..." - - ls -la - - echo "Checking install script syntax..." - - sh -n install.sh && echo "✅ install.sh syntax OK" || echo "❌ install.sh syntax error" - - echo "=== Pipeline completed successfully ===" + - 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: documentation-check + - name: advanced-test image: alpine:latest commands: - - echo "Checking documentation..." - - test -f README.md && echo "✅ README.md exists" || echo "❌ README.md missing" - - test -s README.md && echo "✅ README.md has content" || echo "❌ README.md empty" - - echo "Documentation check completed" \ No newline at end of file + - 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