Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit badc3d1

Browse files
committed
fix: update wget quite no verbose
1 parent 7ca2de2 commit badc3d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/cortex-js-openai-coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
|
4848
node cortex-js/dist/src/command.js serve --host 127.0.0.1 --port 4010 > cortex.log & cortex_pid=$!
4949
sleep 3
50-
wget -O api.json http://127.0.0.1:4010/api-json
50+
wget --no-verbose -O api.json http://127.0.0.1:4010/api-json
5151
kill $cortex_pid
5252

5353
- name: Create python virtual environment and run test
@@ -80,8 +80,8 @@ jobs:
8080

8181
- name: Collect RP artifacts
8282
run: |
83-
wget -O total-coverage.json "${{ secrets.RP_ENDPOINT }}/api/v1/openai-api-test/widget/27" --header 'authorization: bearer ${{ secrets.RP_API_KEY }}'
84-
wget -O today-endpoint.json "${{ secrets.RP_ENDPOINT }}/api/v1/openai-api-test/widget/multilevel/32" --header 'authorization: bearer ${{ secrets.RP_API_KEY }}'
83+
wget --no-verbose -O total-coverage.json "${{ secrets.RP_ENDPOINT }}/api/v1/openai-api-test/widget/27" --header 'authorization: bearer ${{ secrets.RP_API_KEY }}'
84+
wget --no-verbose -O today-endpoint.json "${{ secrets.RP_ENDPOINT }}/api/v1/openai-api-test/widget/multilevel/32" --header 'authorization: bearer ${{ secrets.RP_API_KEY }}'
8585
cat total-coverage.json
8686
current_date=$(date +"%m-%d-%Y")
8787
cp today-endpoint.json $current_date.json

0 commit comments

Comments
 (0)