add Windows bootloader detection to better report on the reasons for … #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverity (MSVC with gnu-efi) build | |
on: | |
push: | |
branches: [master] | |
env: | |
SOLUTION_FILE_PATH: ./uefi-ntfs.sln | |
BUILD_CONFIGURATION: Debug | |
TARGET_PLATFORM: x64 | |
EMAIL: [email protected] | |
jobs: | |
Coverity-Build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Download Coverity | |
run: | | |
curl -d "token=${{ secrets.COVERITY_SCAN_TOKEN }}&project=pbatard%2Fuefi-ntfs" -L https://scan.coverity.com/download/cxx/win64 -o cov-analysis-win64.zip | |
7z x cov-analysis-win64.zip | |
del cov-analysis-win64.zip | |
move cov-analysis-win64* cov-analysis-win64 | |
- name: Add Coverity to PATH | |
shell: bash | |
run: echo "${{ github.workspace }}/cov-analysis-win64/bin" >> $GITHUB_PATH | |
- name: Add MSBuild to PATH | |
uses: microsoft/setup-msbuild@v1 | |
- name: Build with Coverity | |
run: | | |
cov-configure --msvc | |
cov-build.exe --dir cov-int msbuild ${{ env.SOLUTION_FILE_PATH }} /m /p:Configuration=${{ env.BUILD_CONFIGURATION }},Platform=${{ env.TARGET_PLATFORM }} | |
- 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 [email protected] --form version="${{env.GITHUB_SHA}}" --form description="uefi-ntfs" https://scan.coverity.com/builds?project=pbatard%2Fuefi-ntfs |