Add nettest container for CI/CD network debugging #52

Merged
eblume merged 3 commits from feature/network-test-container into main 2026-01-24 16:54:36 -08:00
Showing only changes of commit 13d231687d - Show all commits

Remove test workflow

No longer needed - the build-container workflow validates the CI environment.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Erich Blume 2026-01-24 16:54:21 -08:00

View file

@ -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