Add nettest container for CI/CD network debugging #52
1 changed files with 0 additions and 45 deletions
Remove test workflow
No longer needed - the build-container workflow validates the CI environment. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
commit
13d231687d
|
|
@ -1,45 +0,0 @@
|
|||
# Workflow to verify CI environment and available tools
|
||||
name: Test CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Verify tools
|
||||
run: |
|
||||
echo "=== Node.js ==="
|
||||
node --version || echo "Node.js not available"
|
||||
npm --version || echo "npm not available"
|
||||
echo ""
|
||||
echo "=== Git ==="
|
||||
git --version
|
||||
echo ""
|
||||
echo "=== Build tools ==="
|
||||
make --version 2>&1 | head -1 || echo "make not available"
|
||||
gcc --version 2>&1 | head -1 || echo "gcc not available"
|
||||
echo ""
|
||||
echo "=== Container tools (Docker) ==="
|
||||
docker --version || echo "Docker CLI not available"
|
||||
echo ""
|
||||
echo "=== Other tools ==="
|
||||
curl --version 2>&1 | head -1 || echo "curl not available"
|
||||
jq --version || echo "jq not available"
|
||||
|
||||
- name: Show repo info
|
||||
run: |
|
||||
echo "Repository: ${{ github.repository }}"
|
||||
echo "Event: ${{ github.event_name }}"
|
||||
echo "Ref: ${{ github.ref }}"
|
||||
echo "Branch: ${{ github.ref_name }}"
|
||||
echo ""
|
||||
echo "=== Files ==="
|
||||
ls -la
|
||||
Loading…
Add table
Add a link
Reference in a new issue