Skip to content
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

Add nnf-ec to release-all #196

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 13 additions & 11 deletions tools/release-all/release-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,23 @@ repomap_keys[0]=dws
repomap_keys[1]=lustre_csi_driver
repomap_keys[2]=lustre_fs_operator
repomap_keys[3]=nnf_mfu
repomap_keys[4]=nnf_sos
repomap_keys[5]=nnf_dm
repomap_keys[6]=nnf_integration_test
repomap_keys[7]=nnf_deploy
repomap_keys[8]=nnf_doc
repomap_keys[4]=nnf_ec
repomap_keys[5]=nnf_sos
repomap_keys[6]=nnf_dm
repomap_keys[7]=nnf_integration_test
repomap_keys[8]=nnf_deploy
repomap_keys[9]=nnf_doc

declare "repomap_${repomap_keys[0]}"='[email protected]:DataWorkflowServices/dws.git'
declare "repomap_${repomap_keys[1]}"='[email protected]:HewlettPackard/lustre-csi-driver.git'
declare "repomap_${repomap_keys[2]}"='[email protected]:NearNodeFlash/lustre-fs-operator.git'
declare "repomap_${repomap_keys[3]}"='[email protected]:NearNodeFlash/nnf-mfu.git'
declare "repomap_${repomap_keys[4]}"='[email protected]:NearNodeFlash/nnf-sos.git'
declare "repomap_${repomap_keys[5]}"='[email protected]:NearNodeFlash/nnf-dm.git'
declare "repomap_${repomap_keys[6]}"='[email protected]:NearNodeFlash/nnf-integration-test.git'
declare "repomap_${repomap_keys[7]}"='[email protected]:NearNodeFlash/nnf-deploy.git'
declare "repomap_${repomap_keys[8]}"='[email protected]:NearNodeFlash/NearNodeFlash.github.io.git'
declare "repomap_${repomap_keys[4]}"='[email protected]:NearNodeFlash/nnf-ec.git'
declare "repomap_${repomap_keys[5]}"='[email protected]:NearNodeFlash/nnf-sos.git'
declare "repomap_${repomap_keys[6]}"='[email protected]:NearNodeFlash/nnf-dm.git'
declare "repomap_${repomap_keys[7]}"='[email protected]:NearNodeFlash/nnf-integration-test.git'
declare "repomap_${repomap_keys[8]}"='[email protected]:NearNodeFlash/nnf-deploy.git'
declare "repomap_${repomap_keys[9]}"='[email protected]:NearNodeFlash/NearNodeFlash.github.io.git'

getter() {
# Getter for the associative-array-ish thingy that works in bash v3 for Mac.
Expand Down Expand Up @@ -567,7 +569,7 @@ check_repo_master() {

clone_checkout_fresh_workarea "$repo_name" "$repo_url" "$default_branch" "$indent"

if [[ $repo_short_name != nnf_deploy ]]; then
if [[ $repo_short_name != nnf_deploy ]] && [[ $repo_short_name != nnf_ec ]]; then
check_auto_gens "$indent"
fi
verify_clean_workarea "$indent"
Expand Down
Loading