Skip to content

Commit

Permalink
fix: update wget quite no verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
hiro-v committed Jun 11, 2024
1 parent e6db1d8 commit f4df873
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cortex-js-openai-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
|
node cortex-js/dist/src/command.js serve --host 127.0.0.1 --port 4010 > cortex.log & cortex_pid=$!
sleep 3
wget -O api.json http://127.0.0.1:4010/api-json
wget --no-verbose -O api.json http://127.0.0.1:4010/api-json
kill $cortex_pid

- name: Create python virtual environment and run test
Expand Down Expand Up @@ -80,8 +80,8 @@ jobs:

- name: Collect RP artifacts
run: |
wget -O total-coverage.json "${{ secrets.RP_ENDPOINT }}/api/v1/openai-api-test/widget/27" --header 'authorization: bearer ${{ secrets.RP_API_KEY }}'
wget -O today-endpoint.json "${{ secrets.RP_ENDPOINT }}/api/v1/openai-api-test/widget/multilevel/32" --header 'authorization: bearer ${{ secrets.RP_API_KEY }}'
wget --no-verbose -O total-coverage.json "${{ secrets.RP_ENDPOINT }}/api/v1/openai-api-test/widget/27" --header 'authorization: bearer ${{ secrets.RP_API_KEY }}'
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 }}'
cat total-coverage.json
current_date=$(date +"%m-%d-%Y")
cp today-endpoint.json $current_date.json
Expand Down

0 comments on commit f4df873

Please sign in to comment.