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:
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"
- 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!"