Skip to content

Commit

Permalink
ci: Correct job order (osquery#8185)
Browse files Browse the repository at this point in the history
  • Loading branch information
Smjert authored Nov 10, 2023
1 parent e666542 commit ac174de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/hosted_runners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
# This job runs source code analysis tools (currently, just cppcheck)
check_source_code:
needs: [check_libraries_manifest, check_libraries_manifest]
needs: [check_code_style, check_libraries_manifest]

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
# The Linux build will only start once we know that the code
# has been properly formatted
build_linux:
needs: check_code_style
needs: [check_code_style, check_libraries_manifest]

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -543,7 +543,7 @@ jobs:
# The macOS build will only start once we know that the code
# has been properly formatted
build_macos:
needs: check_code_style
needs: [check_code_style, check_libraries_manifest]

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -938,7 +938,7 @@ jobs:
# The Windows build will only start once we know that the code
# has been properly formatted
build_windows:
needs: check_code_style
needs: [check_code_style, check_libraries_manifest]

runs-on: ${{ matrix.os }}

Expand Down

0 comments on commit ac174de

Please sign in to comment.