Run CodeQL on GitHub Actions #57
Workflow file for this run
This file contains hidden or 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: Build driver solution | |
| on: | |
| push: | |
| jobs: | |
| build-argb-driver: | |
| strategy: | |
| matrix: | |
| configuration: [Debug, Release] | |
| platform: [x64] | |
| runs-on: windows-2022 | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Add MSBuild to PATH | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Setup NuGet | |
| uses: NuGet/setup-nuget@v2 | |
| with: | |
| version: '6.x' | |
| - name: Restore dependencies | |
| run: nuget restore FrameworkArgb\FrameworkArgb.sln | |
| - name: Build solution | |
| run: | | |
| msbuild FrameworkArgb\FrameworkArgb.sln /property:Configuration=${{ env.Configuration }} /property:Platform=${{ env.Platform }} | |
| env: | |
| Configuration: ${{ matrix.configuration }} | |
| Platform: ${{ matrix.platform }} | |
| # Need to EV sign and replace existing signatures | |
| # java -jar ~/Downloads/jsign-7.1.jar --replace --storetype PIV --storepass ****** --tsaurl http://ts.ssl.com --tsmode RFC3161 \ | |
| # FrameworkArgb.dll | |
| # java -jar ~/Downloads/jsign-7.1.jar --replace --storetype PIV --storepass ****** --tsaurl http://ts.ssl.com --tsmode RFC3161 \ | |
| # frameworkargb.cat | |
| - name: Create bundle | |
| run: | | |
| mkdir bundle | |
| cp FrameworkArgb\install\devcon.exe bundle\ | |
| cp FrameworkArgb\install\install_argb_driver.bat bundle\ | |
| cp FrameworkArgb\x64\${{ matrix.configuration }}\FrameworkArgb\frameworkargb.cat bundle\ | |
| cp FrameworkArgb\x64\${{ matrix.configuration }}\FrameworkArgb\FrameworkArgb.dll bundle\ | |
| cp FrameworkArgb\x64\${{ matrix.configuration }}\FrameworkArgb\FrameworkArgb.inf bundle\ | |
| cp FrameworkArgb\x64\${{ matrix.configuration }}\FrameworkArgb.pdb bundle\ | |
| cp FrameworkArgb\x64\${{ matrix.configuration }}\Installer.exe bundle\ | |
| cp FrameworkArgb\x64\${{ matrix.configuration }}\Installer.pdb bundle\ | |
| - name: Upload bundle | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: framework_win_argb_${{ matrix.configuration }} | |
| path: bundle | |
| codeql: | |
| runs-on: windows-2022 | |
| permissions: | |
| security-events: write | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v3 | |
| with: | |
| languages: cpp | |
| - name: Add MSBuild to PATH | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Build solution | |
| run: | | |
| msbuild FrameworkArgb\FrameworkArgb.sln /property:Configuration=Release /property:Platform=x64 | |
| - name: Perform CodeQL analysis | |
| uses: github/codeql-action/analyze@v3 |