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 6406825 commit 6455b68Copy full SHA for 6455b68
.github/workflows/test-mcp-server.yml
@@ -278,7 +278,14 @@ jobs:
278
fi
279
280
# Get the output from the previous step and remove the build status comment
281
- GENERATE_OUTPUT=$(cat generate_output.txt | sed '/^# Build/,$d')
+ # GENERATE_OUTPUT=$(cat generate_output.txt | sed '/^# Build/,$d')
282
+ # COMPILE_RESPONSE=$(curl -s -S -f -X POST http://localhost:8000/compile \
283
+ # -H "Content-Type: application/json" \
284
+ # -d "{
285
+ # \"code\": $(python3 -c "import json, sys; print(json.dumps(sys.stdin.read()))" < <(echo "$GENERATE_OUTPUT"))
286
+ # }" || echo "CURL_FAILED")
287
+
288
+ # Replace with:
289
COMPILE_RESPONSE=$(curl -s -S -f -X POST http://localhost:8000/compile \
290
-H "Content-Type: application/json" \
291
-d "{
0 commit comments