22 lines
685 B
YAML
22 lines
685 B
YAML
skip_clone: true
|
|
|
|
steps:
|
|
- name: simple-test
|
|
image: alpine:latest
|
|
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!" |