Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.16 KB

File metadata and controls

35 lines (27 loc) · 1.16 KB

CI/CD

Workflows

Workflow Trigger Time Purpose
ci.yml Push/PR to main ~5 min Unit tests + musl build + config verify
tc-check.yml TC/XDP code changes ~10 min Strict clippy, BPF skeleton, unsafe audit
integration-test.yml Manual / release ~5 min Netns tunnel test: ping, TCP, iperf3
ndpi-evasion.yml Manual / release ~15 min nDPI evasion test for all obfs modes (quic, gut, sip, syslog)
release.yml Tag v*.*.* ~20 min Full pipeline -> GitHub Release

Quick Reference

# Development (automatic on push)
git push                         # -> ci.yml

# Integration test (manual)
gh workflow run integration-test.yml
# or locally:
sudo bash tests/integration-wg.sh

# nDPI evasion test — all obfuscation modes (manual)
gh workflow run ndpi-evasion.yml
# or locally:
sudo bash tests/test_ndpi_all_modes.sh              # all modes
sudo GUTD_OBFS=syslog bash tests/test_ndpi_evasion.sh  # single mode

# Release
git tag -a v1.0.0 -m "Release v1.0.0"
git push origin v1.0.0            # -> release.yml

See .github/WORKFLOWS.md for details.