fix: use nvstaging in GA#70
Merged
rollandf merged 1 commit intoMellanox:network-operator-25.4.xfrom May 19, 2025
Merged
Conversation
|
Thanks for your PR,
To skip the vendors CIs, Maintainers can use one of:
|
e0ne
approved these changes
May 19, 2025
maze88
requested changes
May 19, 2025
Collaborator
There was a problem hiding this comment.
Code can be compressed a lot:
# ...
jobs:
determine-docker-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: .
- if: github.ref_type == 'branch'
name: Determine tag (when git branch)
run: |
echo DOCKER_TAG=$(git rev-parse --short HEAD) | tee -a $GITHUB_ENV # short git commit hash
- if: github.ref_type == 'tag'
name: Determine tag (when git tag)
run: |
echo DOCKER_TAG=${{ github.ref_name }} | tee -a $GITHUB_ENV
- name: Store tag for following jobs
id: store-docker-tag
run: |
echo DOCKER_TAG=$DOCKER_TAG >> $GITHUB_OUTPUT
outputs:
docker_tag: ${{ steps.store-docker-tag.outputs.DOCKER_TAG }}
build-and-push-images:
needs: determine-docker-registry-and-tag
runs-on: ubuntu-latest
env:
BUILD_PLATFORMS: linux/amd64,linux/arm64,linux/ppc64le
DOCKER_REGISTRY: nvcr.io/nvstaging/mellanox
DOCKER_TAG: ${{ needs.determine-docker-registry-and-tag.outputs.docker_tag }}
# ...
Member
Author
This a temp fix for this release. No need for more changes. |
Pull Request Test Coverage Report for Build 15110249789Details
💛 - Coveralls |
Member
Author
|
@maze88 updated as you requested. |
Signed-off-by: Fred Rolland <frolland@nvidia.com>
e0ne
approved these changes
May 19, 2025
maze88
approved these changes
May 19, 2025
4225daf
into
Mellanox:network-operator-25.4.x
9 of 11 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.