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
This commit is contained in:
Automation 2025-08-14 23:32:15 +00:00
parent 9c24fa2304
commit 541fce1ccd
1 changed files with 15 additions and 15 deletions

View File

@ -1,22 +1,22 @@
clone: skip_clone: true
git:
image: alpine/git:latest
steps: steps:
- name: test-syntax - name: simple-test
image: alpine:latest image: alpine:latest
commands: commands:
- echo "=== GameAdm CI Pipeline ===" - echo "🎉 === GameAdm CI Pipeline Test ==="
- echo "Testing repository structure..." - echo "Woodpecker CI 3.8.0 is working!"
- ls -la - echo "Agent successfully executing commands"
- echo "Checking install script syntax..." - echo "Repository: pp1l/gameadm"
- sh -n install.sh && echo "✅ install.sh syntax OK" || echo "❌ install.sh syntax error" - echo "Pipeline automation working perfectly!"
- echo "=== Pipeline completed successfully ===" - sleep 2
- echo "✅ Pipeline test completed successfully!"
- name: documentation-check - name: advanced-test
image: alpine:latest image: alpine:latest
commands: commands:
- echo "Checking documentation..." - echo "🔧 Advanced test starting..."
- test -f README.md && echo "✅ README.md exists" || echo "❌ README.md missing" - apk add --no-cache curl
- test -s README.md && echo "✅ README.md has content" || echo "❌ README.md empty" - echo "Curl installed successfully"
- echo "Documentation check completed" - curl -s https://httpbin.org/json | head -5
- echo "✅ Advanced test completed!"