Skip to content

Commit

Permalink
added needs deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt committed Nov 28, 2024
1 parent 82b41e9 commit 5dada68
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ jobs:
- '.github/workflows/cicd.yml'
build-containerlab:
needs: file-changes
needs:
- file-changes
- process-gitref
if: needs.file-changes.outputs.code == 'true' || startsWith(github.ref, 'refs/tags/v')
uses: ./.github/workflows/build-containerlab.yml
with:
Expand Down Expand Up @@ -151,6 +153,7 @@ jobs:
py_ver: ${{ needs.process-gitref.outputs.py_ver }}
needs:
- file-changes
- process-gitref
- build-containerlab

ext-container-tests:
Expand Down Expand Up @@ -266,6 +269,7 @@ jobs:
py_ver: ${{ needs.process-gitref.outputs.py_ver }}
needs:
- file-changes
- process-gitref
- build-containerlab

ixiac-one-basic-tests:
Expand Down Expand Up @@ -319,6 +323,7 @@ jobs:
needs:
- file-changes
- build-containerlab
- process-gitref
with:
py_ver: ${{ needs.process-gitref.outputs.py_ver }}

Expand All @@ -327,6 +332,7 @@ jobs:
needs:
- file-changes
- build-containerlab
- process-gitref
with:
py_ver: ${{ needs.process-gitref.outputs.py_ver }}

Expand All @@ -343,6 +349,7 @@ jobs:
needs:
- file-changes
- build-containerlab
- process-gitref
with:
py_ver: ${{ needs.process-gitref.outputs.py_ver }}

Expand All @@ -351,6 +358,7 @@ jobs:
needs:
- file-changes
- build-containerlab
- process-gitref
with:
py_ver: ${{ needs.process-gitref.outputs.py_ver }}

Expand Down Expand Up @@ -505,7 +513,9 @@ jobs:

build-devcontainer:
if: startsWith(github.ref, 'refs/tags/v')
needs: build-and-release
needs:
- build-and-release
- process-gitref
uses: ./.github/workflows/build-devcontainer.yml
with:
CLAB_VERSION: ${{ needs.process-gitref.outputs.source_tag_no_prefix }}
Expand Down

0 comments on commit 5dada68

Please sign in to comment.