|
19 | 19 | pull_request:
|
20 | 20 | merge_group:
|
21 | 21 | workflow_dispatch:
|
22 |
| - |
| 22 | + workflow_call: |
| 23 | + inputs: |
| 24 | + run-codeql: |
| 25 | + required: false |
| 26 | + type: boolean |
| 27 | + |
23 | 28 | concurrency:
|
24 | 29 | group: ${{ github.ref }}-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }}
|
25 | 30 | cancel-in-progress: true
|
|
94 | 99 | .environment/gn_out/.ninja_log
|
95 | 100 | .environment/pigweed-venv/*.log
|
96 | 101 |
|
| 102 | + - name: Initialize CodeQL |
| 103 | + if: ${{ inputs.run-codeql }} |
| 104 | + uses: github/codeql-action/init@v2 |
| 105 | + with: |
| 106 | + languages: "cpp" |
97 | 107 | - name: Setup Build
|
98 | 108 | run: scripts/build/gn_gen.sh --args="chip_config_memory_debug_checks=true chip_config_memory_debug_dmalloc=false"
|
99 | 109 | - name: Run Build
|
@@ -133,6 +143,36 @@ jobs:
|
133 | 143 | path: /tmp/cores/
|
134 | 144 | # Cores are big; don't hold on to them too long.
|
135 | 145 | retention-days: 5
|
| 146 | + - name: Perform CodeQL Analysis |
| 147 | + if: ${{ inputs.run-codeql }} |
| 148 | + uses: github/codeql-action/analyze@v2 |
| 149 | + with: |
| 150 | + category: "/language:cpp" |
| 151 | + upload: False |
| 152 | + output: sarif-results |
| 153 | + - name: filter-sarif |
| 154 | + if: ${{ inputs.run-codeql }} |
| 155 | + uses: advanced-security/filter-sarif@v1 |
| 156 | + with: |
| 157 | + patterns: | |
| 158 | + -**/third_party/** |
| 159 | + -**/scripts/** |
| 160 | + input: "sarif-results/cpp.sarif" |
| 161 | + output: "sarif-results/cpp.sarif" |
| 162 | + |
| 163 | + - name: Upload SARIF |
| 164 | + if: ${{ inputs.run-codeql }} |
| 165 | + uses: github/codeql-action/upload-sarif@v2 |
| 166 | + with: |
| 167 | + sarif_file: "sarif-results/cpp.sarif" |
| 168 | + |
| 169 | + - name: Upload loc as a Build Artifact |
| 170 | + if: ${{ inputs.run-codeql }} |
| 171 | + uses: actions/upload-artifact@v2.2.0 |
| 172 | + with: |
| 173 | + name: sarif-results |
| 174 | + path: sarif-results |
| 175 | + retention-days: 1 |
136 | 176 | # OBJDIR on linux is > 10K files and takes more than 50 minutes to upload, usually
|
137 | 177 | # having the job timeout.
|
138 | 178 | #
|
@@ -178,11 +218,6 @@ jobs:
|
178 | 218 | token: ${{ github.token }}
|
179 | 219 | attempt_limit: 3
|
180 | 220 | attempt_delay: 2000
|
181 |
| - # - name: Initialize CodeQL |
182 |
| - # if: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/master' }} |
183 |
| - # uses: github/codeql-action/init@v1 |
184 |
| - # with: |
185 |
| - # languages: "cpp" |
186 | 221 | - name: Checkout submodules
|
187 | 222 | run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux
|
188 | 223 | - name: Try to ensure the directories for core dumping exist and we
|
@@ -215,7 +250,11 @@ jobs:
|
215 | 250 | path: |
|
216 | 251 | .environment/gn_out/.ninja_log
|
217 | 252 | .environment/pigweed-venv/*.log
|
218 |
| -
|
| 253 | + - name: Initialize CodeQL |
| 254 | + if: ${{ inputs.run-codeql }} |
| 255 | + uses: github/codeql-action/init@v2 |
| 256 | + with: |
| 257 | + languages: "cpp" |
219 | 258 | - name: Setup and Build Simulated Device
|
220 | 259 | timeout-minutes: 20
|
221 | 260 | run: |
|
@@ -302,6 +341,36 @@ jobs:
|
302 | 341 | run: |
|
303 | 342 | ./scripts/run_in_build_env.sh \
|
304 | 343 | "./scripts/build/build_examples.py --target linux-fake-tests build"
|
| 344 | + - name: Perform CodeQL Analysis |
| 345 | + if: ${{ inputs.run-codeql }} |
| 346 | + uses: github/codeql-action/analyze@v2 |
| 347 | + with: |
| 348 | + category: "/language:cpp" |
| 349 | + upload: False |
| 350 | + output: sarif-results |
| 351 | + - name: filter-sarif |
| 352 | + if: ${{ inputs.run-codeql }} |
| 353 | + uses: advanced-security/filter-sarif@v1 |
| 354 | + with: |
| 355 | + patterns: | |
| 356 | + -**/third_party/** |
| 357 | + -**/scripts/** |
| 358 | + input: "sarif-results/cpp.sarif" |
| 359 | + output: "sarif-results/cpp.sarif" |
| 360 | + |
| 361 | + - name: Upload SARIF |
| 362 | + if: ${{ inputs.run-codeql }} |
| 363 | + uses: github/codeql-action/upload-sarif@v2 |
| 364 | + with: |
| 365 | + sarif_file: "sarif-results/cpp.sarif" |
| 366 | + |
| 367 | + - name: Upload loc as a Build Artifact |
| 368 | + if: ${{ inputs.run-codeql }} |
| 369 | + uses: actions/upload-artifact@v2.2.0 |
| 370 | + with: |
| 371 | + name: sarif-results |
| 372 | + path: sarif-results |
| 373 | + retention-days: 1 |
305 | 374 | - name: Uploading core files
|
306 | 375 | uses: actions/upload-artifact@v3
|
307 | 376 | if: ${{ failure() && !env.ACT }}
|
@@ -411,11 +480,6 @@ jobs:
|
411 | 480 | token: ${{ github.token }}
|
412 | 481 | attempt_limit: 3
|
413 | 482 | attempt_delay: 2000
|
414 |
| - #- name: Initialize CodeQL |
415 |
| - # if: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/master' }} |
416 |
| - # uses: github/codeql-action/init@v1 |
417 |
| - # with: |
418 |
| - # languages: "cpp" |
419 | 483 | - name: Checkout submodules
|
420 | 484 | run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform darwin
|
421 | 485 | - name: Try to ensure the directory for diagnostic log collection exists
|
@@ -447,6 +511,11 @@ jobs:
|
447 | 511 | .environment/gn_out/.ninja_log
|
448 | 512 | .environment/pigweed-venv/*.log
|
449 | 513 |
|
| 514 | + - name: Initialize CodeQL |
| 515 | + if: ${{ inputs.run-codeql }} |
| 516 | + uses: github/codeql-action/init@v2 |
| 517 | + with: |
| 518 | + languages: "cpp" |
450 | 519 | - name: Setup and Build Simulated Device
|
451 | 520 | timeout-minutes: 20
|
452 | 521 | run: |
|
@@ -495,9 +564,36 @@ jobs:
|
495 | 564 | with:
|
496 | 565 | name: crash-log-darwin
|
497 | 566 | path: ~/Library/Logs/DiagnosticReports/
|
498 |
| - # - name: Perform CodeQL Analysis |
499 |
| - # if: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/master' }} |
500 |
| - # uses: github/codeql-action/analyze@v1 |
| 567 | + - name: Perform CodeQL Analysis |
| 568 | + if: ${{ inputs.run-codeql }} |
| 569 | + uses: github/codeql-action/analyze@v2 |
| 570 | + with: |
| 571 | + category: "/language:cpp" |
| 572 | + upload: False |
| 573 | + output: sarif-results |
| 574 | + - name: filter-sarif |
| 575 | + if: ${{ inputs.run-codeql }} |
| 576 | + uses: advanced-security/filter-sarif@v1 |
| 577 | + with: |
| 578 | + patterns: | |
| 579 | + -**/third_party/** |
| 580 | + -**/scripts/** |
| 581 | + input: "sarif-results/cpp.sarif" |
| 582 | + output: "sarif-results/cpp.sarif" |
| 583 | + |
| 584 | + - name: Upload SARIF |
| 585 | + if: ${{ inputs.run-codeql }} |
| 586 | + uses: github/codeql-action/upload-sarif@v2 |
| 587 | + with: |
| 588 | + sarif_file: "sarif-results/cpp.sarif" |
| 589 | + |
| 590 | + - name: Upload loc as a Build Artifact |
| 591 | + if: ${{ inputs.run-codeql }} |
| 592 | + uses: actions/upload-artifact@v2.2.0 |
| 593 | + with: |
| 594 | + name: sarif-results |
| 595 | + path: sarif-results |
| 596 | + retention-days: 1 |
501 | 597 | # TODO Log Upload https://github.com/project-chip/connectedhomeip/issues/2227
|
502 | 598 | # TODO https://github.com/project-chip/connectedhomeip/issues/1512
|
503 | 599 |
|
|
0 commit comments