mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-29 14:05:22 -04:00
[ui] produce a more explicit error message when an image can't be opened/read
* Closes #1843 * Also publish Coverity artifacts since upload to Coverity seems to be broken atm.
This commit is contained in:
parent
52d05aa228
commit
a47072c3c6
7 changed files with 34 additions and 20 deletions
7
.github/workflows/coverity.yml
vendored
7
.github/workflows/coverity.yml
vendored
|
@ -50,8 +50,15 @@ jobs:
|
|||
|
||||
- name: Build with Coverity
|
||||
run: cov-build.exe --dir cov-int msbuild ${{ env.SOLUTION_FILE_PATH }} /m /p:Configuration=${{ env.BUILD_CONFIGURATION }},Platform=${{ env.TARGET_PLATFORM }}
|
||||
|
||||
- name: Publish Coverity artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: cov-int
|
||||
path: cov-int/
|
||||
|
||||
- name: Upload Coverity build for analysis
|
||||
run: |
|
||||
7z a -r cov-int.zip cov-int
|
||||
curl --form email=${{ env.EMAIL }} --form token=${{ secrets.COVERITY_SCAN_TOKEN }} --form file=@cov-int.zip --form version="${{ env.GITHUB_SHA }}" --form description="Automated build" https://scan.coverity.com/builds?project=${{ env.COVERITY_PROJECT_NAME }}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue