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 05d14f9 commit 7945915Copy full SHA for 7945915
.github/workflows/ci-nightly-cirq-test.yaml
@@ -49,9 +49,6 @@ env:
49
build --verbose_failures
50
test --test_timeout=3000
51
52
- # Equivalent to doing 'set -x' in shell scripts.
53
- SHELLOPTS: ${{inputs.debug && 'xtrace'}}
54
-
55
concurrency:
56
# Cancel any previously-started but still active runs on the same branch.
57
cancel-in-progress: true
@@ -86,6 +83,10 @@ jobs:
86
83
- name: Install TensorFlow Quantum dependencies
87
84
run: pip install -r requirements.txt
88
85
+ - name: Turn on debug tracing
+ if: inputs.debug || runner.debug
+ run: set -x
89
+
90
- name: Install the nightly build version of Cirq
91
run: |
92
echo 'numpy<2.0.0' > constraint.txt
0 commit comments