Skip to content

Commit eda627e

Browse files
committed
ci: Add another debugging printout
Further attempt to narrow down the spurious Windows failure.
1 parent 7c97577 commit eda627e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
- name: Create CI artifacts
158158
id: create_artifacts
159159
if: always()
160-
run: python3 ci/create-artifacts.py
160+
run: echo "step is actually running" && python3 ci/create-artifacts.py
161161
- uses: actions/upload-artifact@v5
162162
if: always() && steps.create_artifacts.outcome == 'success'
163163
with:

ci/create-artifacts.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
This is useful for seeing what exactly `ctest` is running.
55
"""
66

7+
print("very first line of the script") # debugging
8+
79
import os
810
import subprocess as sp
911
import sys

0 commit comments

Comments
 (0)