Skip to content

Commit

Permalink
Refactor CI graph order
Browse files Browse the repository at this point in the history
  • Loading branch information
Pencilcaseman committed Aug 30, 2023
1 parent c4c2a94 commit 5abf0f2
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -380,23 +380,6 @@ jobs:
name: Documentation
path: docs/build/**

quodona:
name: Run Qodana
needs: compile
runs-on: ubuntu-latest
continue-on-error: true

steps:
- name: Checkout LibRapid
uses: actions/checkout@v3
with:
submodules: recursive

# - name: Qodana Scan
# uses: JetBrains/qodana-action@main
# env:
# QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}

run-benchmarks:
name: Run Benchmarks on ${{ matrix.os }} with ${{ matrix.cxx }}
needs: [ compile, build-docs ]
Expand Down Expand Up @@ -584,9 +567,26 @@ jobs:
name: LibRapid_Benchmark_SHA_${{ github.sha }}
path: BECHMARK_RESULTS

quodona:
name: Run Qodana
needs: [ compile, upload-benchmarks ]
runs-on: ubuntu-latest
continue-on-error: true

steps:
- name: Checkout LibRapid
uses: actions/checkout@v3
with:
submodules: recursive

# - name: Qodana Scan
# uses: JetBrains/qodana-action@main
# env:
# QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}

code-coverage:
name: Code Coverage
needs: upload-benchmarks
needs: [ compile, upload-benchmarks ]
runs-on: ubuntu-latest
continue-on-error: true

Expand Down Expand Up @@ -629,7 +629,7 @@ jobs:

trigger-docs:
name: Trigger Documentation Build
needs: [ compile, upload-benchmarks, quodona, build-docs ]
needs: [ compile, build-docs, quodona, code-coverage ]
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
Expand Down

0 comments on commit 5abf0f2

Please sign in to comment.