Skip to content

Commit f7e1f9a

Browse files
debug schema
1 parent 552731b commit f7e1f9a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/build_sdk.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,28 @@ jobs:
7777
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7878
- name: Download prerequisites
7979
uses: ./.github/actions/download-prerequisites
80+
- name: Debug: Output downloaded schema
81+
run: |
82+
echo "=== Downloaded schema-embed.json content ==="
83+
if [ -f "provider/cmd/pulumi-resource-scm/schema-embed.json" ]; then
84+
echo "Schema file exists, size: $(wc -c < provider/cmd/pulumi-resource-scm/schema-embed.json) bytes"
85+
echo "First 1000 characters:"
86+
head -c 1000 provider/cmd/pulumi-resource-scm/schema-embed.json
87+
echo ""
88+
echo "=== Looking for EAPTTLSWithPAP in schema ==="
89+
if grep -q "EAPTTLSWithPAP" provider/cmd/pulumi-resource-scm/schema-embed.json; then
90+
echo "✓ Found EAPTTLSWithPAP (uppercase) in schema"
91+
else
92+
echo "✗ EAPTTLSWithPAP (uppercase) NOT found in schema"
93+
fi
94+
if grep -q "EapTtlsWithPap" provider/cmd/pulumi-resource-scm/schema-embed.json; then
95+
echo "✓ Found EapTtlsWithPap (lowercase) in schema"
96+
else
97+
echo "✗ EapTtlsWithPap (lowercase) NOT found in schema"
98+
fi
99+
else
100+
echo "❌ Schema file does not exist!"
101+
fi
80102
- name: Update path
81103
run: echo "${{ github.workspace }}/bin" >> "$GITHUB_PATH"
82104
- name: Restore makefile progress

0 commit comments

Comments
 (0)