Skip to content

Commit

Permalink
(maint) modified CodeQL build
Browse files Browse the repository at this point in the history
since that build seems to fail (crash) randomly
with an obscure exit code 139. This should
allow for some debugging the next time the build
crashes.
  • Loading branch information
nils-a committed Sep 24, 2021
1 parent 95a1d64 commit 21b963f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
branches: [develop]
schedule:
- cron: '0 15 * * 6'
workflow_dispatch:

jobs:
analyze:
Expand Down Expand Up @@ -57,6 +58,18 @@ jobs:
target: DotNetCore-Build
cake-version: 0.38.5
cake-bootstrap: true
env:
COMPlus_DbgEnableMiniDump: 1
COMPlus_DbgMiniDumpType: 1
COMPlus_DbgMiniDumpName: BuildArtifacts/coredump.dmp

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

- name: Upload CoreDump
uses: actions/upload-artifact@v2
if: failure()
with:
if-no-files-found: warn
name: CoreDump
path: BuildArtifacts/coredump.dmp

0 comments on commit 21b963f

Please sign in to comment.