Skip to content

Commit 0dcf7bc

Browse files
jeremymanningclaude
andcommitted
Fix Windows CI: Replace emojis with ASCII text
Windows CI failing due to emoji encoding issues on cp1252. Replaced Unicode emojis (✅❌) with ASCII text ([OK][ERROR]). Fixes UnicodeEncodeError on Windows runners. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 8ac1de1 commit 0dcf7bc

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

debug_ci_env.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ def main():
2222
for var in required_vars:
2323
value = os.environ.get(var)
2424
if value:
25-
print(f" {var}: {'*' * 20} (set)")
25+
print(f"[OK] {var}: {'*' * 20} (set)")
2626
else:
27-
print(f" {var}: Not set")
27+
print(f"[MISSING] {var}: Not set")
2828

2929
# Check for key files
3030
print("\n=== Key Files Check ===")
@@ -40,29 +40,29 @@ def main():
4040
for file_path in key_files:
4141
path = Path(file_path)
4242
if path.exists():
43-
print(f" {file_path}: exists")
43+
print(f"[OK] {file_path}: exists")
4444
else:
45-
print(f" {file_path}: missing")
45+
print(f"[MISSING] {file_path}: missing")
4646

4747
# Check Python package installation
4848
print("\n=== Package Installation Check ===")
4949
try:
5050
import orchestrator
51-
print(" orchestrator package: importable")
51+
print("[OK] orchestrator package: importable")
5252
print(f" Version: {getattr(orchestrator, '__version__', 'unknown')}")
5353
print(f" Location: {orchestrator.__file__}")
5454
except ImportError as e:
55-
print(f" orchestrator package: {e}")
55+
print(f"[ERROR] orchestrator package: {e}")
5656

5757
# Test basic functionality
5858
print("\n=== Basic Functionality Test ===")
5959
try:
6060
# Try importing core components
6161
from orchestrator.api import compile
6262
from orchestrator.core.pipeline import Pipeline
63-
print(" Core components: importable")
63+
print("[OK] Core components: importable")
6464
except ImportError as e:
65-
print(f" Core components: {e}")
65+
print(f"[ERROR] Core components: {e}")
6666

6767
print("\n=== CI Environment Debug Complete ===")
6868
return 0

0 commit comments

Comments
 (0)