-
Notifications
You must be signed in to change notification settings - Fork 240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update nightly build and deploy script for arm artifacts [skip ci] #9888
Conversation
Signed-off-by: Peixin Li <[email protected]>
jenkins/deploy.sh
Outdated
@@ -48,6 +49,7 @@ ART_GROUP_ID=$(mvnEval $DIST_PL project.groupId) | |||
ART_VER=$(mvnEval $DIST_PL project.version) | |||
DEFAULT_CUDA_CLASSIFIER=$(mvnEval $DIST_PL cuda.version) | |||
CUDA_CLASSIFIERS=${CUDA_CLASSIFIERS:-"$DEFAULT_CUDA_CLASSIFIER"} | |||
CLASSIFIERS==${CLASSIFIERS:-"$CUDA_CLASSIFIERS"} # default as CUDA_CLASSIFIERS for compatibility |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CLASSIFIERS==${CLASSIFIERS:-"$CUDA_CLASSIFIERS"} # default as CUDA_CLASSIFIERS for compatibility | |
CLASSIFIERS=${CLASSIFIERS:-"$CUDA_CLASSIFIERS"} # default as CUDA_CLASSIFIERS for compatibility |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice catch! forget to append test change to commit, thanks
build |
I am going to merge this one and will keep monitoring status of nightly runs. If needed, I will post some followups thanks |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…p ci] (NVIDIA#9888)" This reverts commit b92a0b4.
…cts [skip ci] (NVIDIA#9888)"" This reverts commit 5d31719.
fix #9274 #6881
Some updates:
CLASSIFIERS
to replaceCUDA_CLASSIFIERS
CUDA_CLASSIFIERS
for compatibility (so merging this would not affect the current build process)-T
to speed up mvn build if skipTests=trueThis has been verified internally, [skip ci] as the change would not be covered in pre-merge
I will update internal pipelines after merging this