Skip to content

Commit 631da04

Browse files
committed
DEBUG
1 parent db08514 commit 631da04

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/build-wheels.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ jobs:
5959
run: docker build -t rustc-manylinux2014_x86_64 python/scripts/rustc-manylinux2014_x86_64
6060

6161
- name: build featomic wheel
62-
run: python -m cibuildwheel python/featomic
62+
run: |
63+
git status
64+
python -m cibuildwheel python/featomic
65+
git status
6366
env:
6467
CIBW_BUILD: cp310-*
6568
CIBW_SKIP: "*musllinux*"

scripts/git-version-info.py

+3
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,9 @@ def git_hash_all_code():
102102

103103
output = run_subprocess(["git", "write-tree"], env=git_env)
104104
short_hash = output.stdout[:7]
105+
106+
output = run_subprocess(["git", "status"], env=git_env)
107+
warn_and_exit(output.stdout + " " + output.stderr)
105108
else:
106109
output = run_subprocess(["git", "rev-parse", "HEAD"])
107110
short_hash = output.stdout[:7]

0 commit comments

Comments
 (0)