From 2649a4499ad3df63bef56ec6ce0578e1a0a926ce Mon Sep 17 00:00:00 2001 From: ArielSAdamsNASA Date: Fri, 16 Jul 2021 09:47:58 -0500 Subject: [PATCH] Fix #264, CodeQL Dependent on Successful Build --- .github/workflows/codeql-build.yml | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql-build.yml b/.github/workflows/codeql-build.yml index e52049a07..6ad3aac7a 100644 --- a/.github/workflows/codeql-build.yml +++ b/.github/workflows/codeql-build.yml @@ -1,17 +1,20 @@ name: "CodeQL Analysis" +# Only trigger, when the build workflow succeeded on: - push: - pull_request: - branches: - - main - + workflow_run: + workflows: ["Build, Test, and Run \\[OMIT_DEPRECATED=true\\]"] + types: + - completed + branches: + - '**' env: SIMULATION: native ENABLE_UNIT_TESTS: true OMIT_DEPRECATED: true BUILDTYPE: release + jobs: #Checks for duplicate actions. Skips push actions if there is a matching or duplicate pull-request action. check-for-duplicates: @@ -19,6 +22,7 @@ jobs: # Map a step output to a job output outputs: should_skip: ${{ steps.skip_check.outputs.should_skip }} + if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - id: skip_check uses: fkirc/skip-duplicate-actions@master @@ -49,7 +53,6 @@ jobs: run: | git log -1 --pretty=oneline git submodule - - name: Initialize CodeQL if: ${{ !steps.skip-workflow.outputs.skip }} uses: github/codeql-action/init@v1 @@ -63,7 +66,6 @@ jobs: run: | cp ./cfe/cmake/Makefile.sample Makefile cp -r ./cfe/cmake/sample_defs sample_defs - # Setup the build system - name: Make Install if: ${{ !steps.skip-workflow.outputs.skip }} @@ -95,7 +97,6 @@ jobs: run: | git log -1 --pretty=oneline git submodule - - name: Checkout codeql code if: ${{ !steps.skip-workflow.outputs.skip }} uses: actions/checkout@v2 @@ -117,7 +118,6 @@ jobs: run: | cp ./cfe/cmake/Makefile.sample Makefile cp -r ./cfe/cmake/sample_defs sample_defs - # Setup the build system - name: Make Install if: ${{ !steps.skip-workflow.outputs.skip }} @@ -127,3 +127,10 @@ jobs: - name: Perform CodeQL Analysis if: ${{ !steps.skip-workflow.outputs.skip }} uses: github/codeql-action/analyze@v1 + + on-failure: + runs-on: ubuntu-latest + if: ${{ github.event.workflow_run.conclusion == 'failure' }} + steps: + - name: Fail workflow + run: exit 1