File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Unified Identity CI
2+
3+ on :
4+ push :
5+ branches : ["main", "develop", "feat/**"] # Triggers on any branch starting with feat/
6+ pull_request :
7+ branches : ["main", "develop"]
8+ workflow_dispatch : # This allows manual testing on ANY branch
9+
10+ jobs :
11+ integration-test :
12+ name : Hybrid Cloud PoC Integration Test
13+ runs-on : self-hosted
14+
15+ steps :
16+ - name : Checkout Code
17+ uses : actions/checkout@v4
18+ with :
19+ submodules : recursive
20+
21+ - name : Set up Python
22+ uses : actions/setup-python@v5
23+ with :
24+ python-version : " 3.10"
25+
26+ - name : Run Integration Tests
27+ shell : bash
28+ run : |
29+ cd hybrid-cloud-poc
30+ chmod +x ci_test_runner.py test_integration.sh
31+ # --single-machine targets the current host for all components
32+ # --no-color ensures clean logs in GitHub Actions
33+ ./ci_test_runner.py --no-color --single-machine
You can’t perform that action at this time.
0 commit comments