Skip to content

Commit

Permalink
Try wget instead of curl to download
Browse files Browse the repository at this point in the history
  • Loading branch information
omalyshe committed Jul 22, 2024
1 parent af044fb commit 87aa7be
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,15 @@ jobs:
runs-on: [ubuntu-latest]
timeout-minutes: 45
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download Linux 64 Coverity Tool
run: |
curl -L https://scan.coverity.com/download/cxx/linux64 \
--output cov-linux64-tool.tar.gz \
--data "token=${{secrets.COVERITY_TOKEN}}&project=${env: COVERITY_PROJECT}"
# curl -L https://scan.coverity.com/download/cxx/linux64 \
# --output cov-linux64-tool.tar.gz \
# --data "token=${{secrets.COVERITY_TOKEN}}&project=${env: COVERITY_PROJECT}"
wget https://scan.coverity.com/download/cxx/linux64 \
-O cov-linux64-tool.tar.gz \
--post-data "token=${{secrets.COVERITY_TOKEN}}&project=${env: COVERITY_PROJECT}" --show-progress
ls -l
mkdir cov-linux64-tool
tar -xzf cov-linux64-tool.tar.gz --strip 1 -C cov-linux64-tool
Expand Down

0 comments on commit 87aa7be

Please sign in to comment.