Skip to content

Commit

Permalink
wip will break
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Sep 16, 2024
1 parent 0501135 commit 0242e35
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ env:

jobs:
# TODO: handle case where we run valgrind on a "central" branch
look-for-wheel-in-jfrog:
look-for-wheel-in-generic-jfrog-repo:
if: ${{ github.ref_name != 'dev' && github.ref_name != 'stage' && github.ref_name != 'master' }}
outputs:
num_artifacts_found: ${{ steps.count_num_artifacts_found.outputs.num_artifacts }}
python-tag: ${{ env.PYTHON_TAG }}
Expand Down Expand Up @@ -77,8 +78,8 @@ jobs:
path: './.github/workflows/*.whl'

build-manylinux-wheel:
needs: look-for-wheel-in-jfrog
if: ${{ needs.look-for-wheel-in-jfrog.outputs.num_artifacts_found == 0 }}
needs: look-for-wheel-in-generic-jfrog-repo
if: ${{ !cancelled() && needs.look-for-wheel-in-generic-jfrog-repo.result == 'skipped' || (needs.look-for-wheel-in-generic-jfrog-repo.result == 'success' && needs.look-for-wheel-in-generic-jfrog-repo.outputs.num_artifacts_found == 0) }}
uses: ./.github/workflows/build-wheels.yml
with:
python-tags: '["${{ needs.look-for-wheel-in-jfrog.outputs.python-tag }}"]'
Expand Down

0 comments on commit 0242e35

Please sign in to comment.