Skip to content

Commit

Permalink
Run install job after build job
Browse files Browse the repository at this point in the history
  • Loading branch information
pzehner committed Feb 28, 2024
1 parent 829e7c6 commit 7506ef6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,10 @@ jobs:

needs:
- check_docker_files
- build_base
# - build # FIXME uncomment this before merging
- build

# run this job even if build_base did not run
if: ${{ ! cancelled() && (needs.build_base.result == 'success' || needs.build_base.result == 'skipped') }}
if: ${{ ! cancelled() && needs.build.result == 'success' }}

strategy:
matrix:
Expand All @@ -204,7 +203,6 @@ jobs:
<<: *build_backends

steps:

- name: Checkout built branch
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 7506ef6

Please sign in to comment.