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 e617047 commit f49ac84Copy full SHA for f49ac84
.github/workflows/ci.yml
@@ -82,6 +82,16 @@ jobs:
82
name: ${{ steps.sanitize.outputs.artifact_name }}
83
path: ${{ env.WORKSPACE_ARTIFACT_PATH }}
84
85
+ - name: Debug install tree
86
+ if: runner.os == 'Linux'
87
+ run: |
88
+ echo "=== Listing install/CollisionAlgorithm ==="
89
+ find $GITHUB_WORKSPACE/install/CollisionAlgorithm -maxdepth 3 -type d -print
90
+ echo "=== Listing cmake files ==="
91
+ find $GITHUB_WORKSPACE/install/CollisionAlgorithm -name "*Config.cmake" -print
92
+ echo "=== Listing include ==="
93
+ find $GITHUB_WORKSPACE/install/CollisionAlgorithm/include -maxdepth 4 -type d -print
94
+
95
- name: Checkout ConstraintGeometry
96
uses: actions/checkout@v2
97
with:
0 commit comments