We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c97577 commit eda627eCopy full SHA for eda627e
.github/workflows/ci.yaml
@@ -157,7 +157,7 @@ jobs:
157
- name: Create CI artifacts
158
id: create_artifacts
159
if: always()
160
- run: python3 ci/create-artifacts.py
+ run: echo "step is actually running" && python3 ci/create-artifacts.py
161
- uses: actions/upload-artifact@v5
162
if: always() && steps.create_artifacts.outcome == 'success'
163
with:
ci/create-artifacts.py
@@ -4,6 +4,8 @@
4
This is useful for seeing what exactly `ctest` is running.
5
"""
6
7
+print("very first line of the script") # debugging
8
+
9
import os
10
import subprocess as sp
11
import sys
0 commit comments