Skip to content

Commit 21ca40b

Browse files
committed
Remove debug output
1 parent b148261 commit 21ca40b

File tree

2 files changed

+2
-41
lines changed

2 files changed

+2
-41
lines changed

.github/workflows/dispatch-build-and-test.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -22,30 +22,12 @@ on:
2222
devcontainer_version: {type: string, required: true}
2323

2424
jobs:
25-
# Debug job to print the per_cuda_compiler_matrix value
26-
debug-matrix:
27-
name: Debug matrix values
28-
runs-on: ubuntu-latest
29-
steps:
30-
- name: Print per_cuda_compiler_matrix input
31-
run: |
32-
echo "=== Debug per_cuda_compiler_matrix ==="
33-
echo "Raw input value:"
34-
echo '${{ inputs.per_cuda_compiler_matrix }}'
35-
echo ""
36-
echo "Parsed JSON value:"
37-
echo '${{ fromJSON(inputs.per_cuda_compiler_matrix) }}'
38-
echo ""
39-
echo "Type and length info:"
40-
echo '${{ inputs.per_cuda_compiler_matrix }}' | jq 'type, length'
41-
4225
# Using a matrix to dispatch to the build-and-test reusable workflow for each build configuration
4326
# ensures that the build/test steps can overlap across different configurations. For example,
4427
# the build step for CUDA 12.1 + gcc 9.3 can run at the same time as the test step for CUDA 11.0 + clang 11.
4528
build_and_test:
4629
name: ${{matrix.cpu}}
4730
uses: ./.github/workflows/build-and-test.yml
48-
needs: debug-matrix
4931
strategy:
5032
fail-fast: false
5133
matrix:

.github/workflows/pr.yml

Lines changed: 2 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -65,20 +65,7 @@ jobs:
6565
- name: Compute matrix outputs
6666
id: set-outputs
6767
run: |
68-
echo "=== Debug Info ==="
69-
echo "yq version: $(yq --version)"
70-
echo "jq version: $(jq --version)"
71-
echo ""
72-
echo "=== Matrix File Content ==="
73-
cat ci/matrix.yml
74-
echo ""
75-
echo "=== Running compute-matrix script ==="
7668
.github/actions/compute-matrix/compute-matrix.sh ci/matrix.yml pull_request
77-
echo ""
78-
echo "=== Output Variables ==="
79-
echo "CUDA_VERSIONS: ${{ steps.set-outputs.outputs.CUDA_VERSIONS }}"
80-
echo "HOST_COMPILERS: ${{ steps.set-outputs.outputs.HOST_COMPILERS }}"
81-
echo "PER_CUDA_COMPILER_MATRIX: ${{ steps.set-outputs.outputs.PER_CUDA_COMPILER_MATRIX }}"
8269
8370
ci:
8471
name: CUDA${{ matrix.cuda_version }} ${{ matrix.compiler }}
@@ -109,19 +96,11 @@ jobs:
10996
- ci
11097
- verify-devcontainers
11198
steps:
112-
- name: Debug - Print all job results
113-
run: |
114-
echo "=== Job Results Debug ==="
115-
echo "doxygen-check result: ${{ needs.doxygen-check.result }}"
116-
echo "ci result: ${{ needs.ci.result }}"
117-
echo "verify-devcontainers result: ${{ needs.verify-devcontainers.result }}"
118-
echo "=========================="
11999
- name: Check status of all precursor jobs
120100
if: >-
121101
${{
122102
contains(needs.*.result, 'failure')
123103
|| contains(needs.*.result, 'cancelled')
104+
|| contains(needs.*.result, 'skipped')
124105
}}
125-
run: |
126-
echo "❌ CI FAILED: One or more prerequisite jobs failed or were cancelled"
127-
exit 1
106+
run: exit 1

0 commit comments

Comments
 (0)