Skip to content

Commit 780c283

Browse files
authored
Update cross-platform-build-verification.yml
Signed-off-by: 1minds3t <1minds3t@proton.me>
1 parent f77d2f6 commit 780c283

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/cross-platform-build-verification.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,12 @@ jobs:
6363
6464
- name: Build and Test
6565
shell: bash
66+
env:
67+
PYTHONUNBUFFERED: "1" # Force Python to show logs immediately
6668
run: |
67-
# Use 'python' if 'python3' isn't available (common on Windows)
69+
set -x # Debug mode: Print every command as it runs
70+
71+
# Use 'python' if 'python3' isn't available
6872
if command -v python3 &>/dev/null; then PY=python3; else PY=python; fi
6973
7074
# Create venv
@@ -77,11 +81,12 @@ jobs:
7781
source .venv/Scripts/activate
7882
fi
7983
80-
# Now run commands inside the verified venv
84+
# Install and build
8185
python -m pip install --upgrade pip build
8286
python -m build
8387
pip install dist/*.whl
8488
89+
# verify
8590
omnipkg --version
8691
8pkg --version
8792
omnipkg list

0 commit comments

Comments
 (0)