-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
179 changed files
with
5,271 additions
and
598 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Configuration file for `copy-pr-bot` GitHub App | ||
# https://docs.gha-runners.nvidia.com/apps/copy-pr-bot/ | ||
|
||
enabled: true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,3 @@ auto_merger: true | |
branch_checker: true | ||
label_checker: true | ||
release_drafter: true | ||
copy_prs: true | ||
rerun_tests: true |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[submodule "morpheus_utils"] | ||
path = external/utilities | ||
url = https://github.com/nv-morpheus/utilities.git | ||
branch = branch-23.07 | ||
branch = branch-23.11 |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
## :snowflake: Code freeze for `branch-${VERSION}` and `v${VERSION}` release | ||
|
||
### What does this mean? | ||
Only critical/hotfix level issues should be merged into `branch-${VERSION}` until release (merging of this PR). | ||
|
||
All other development PRs should be retargeted towards the next release branch: `branch-${NEXT_VERSION}`. | ||
|
||
### What is the purpose of this PR? | ||
- Update documentation | ||
- Allow testing for the new release | ||
- Enable a means to merge `branch-${VERSION}` into `main` for the release |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
#!/bin/bash | ||
# SPDX-FileCopyrightText: Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
export WORKSPACE_TMP="$(pwd)/.tmp/local_ci_workspace" | ||
mkdir -p ${WORKSPACE_TMP} | ||
git clone ${GIT_URL} mrc | ||
cd mrc/ | ||
git checkout ${GIT_BRANCH} | ||
git pull | ||
git checkout ${GIT_COMMIT} | ||
|
||
export MRC_ROOT=$(pwd) | ||
export WORKSPACE=${MRC_ROOT} | ||
export LOCAL_CI=1 | ||
GH_SCRIPT_DIR="${MRC_ROOT}/ci/scripts/github" | ||
|
||
unset CMAKE_CUDA_COMPILER_LAUNCHER | ||
unset CMAKE_CXX_COMPILER_LAUNCHER | ||
unset CMAKE_C_COMPILER_LAUNCHER | ||
|
||
if [[ "${STAGE}" != "bash" ]]; then | ||
# benchmark & codecov are composite stages, the rest are composed of a single shell script | ||
if [[ "${STAGE}" == "benchmark" || "${STAGE}" == "codecov" ]]; then | ||
CI_SCRIPT="${WORKSPACE_TMP}/ci_script.sh" | ||
echo "#!/bin/bash" > ${CI_SCRIPT} | ||
if [[ "${STAGE}" == "benchmark" ]]; then | ||
echo "${GH_SCRIPT_DIR}/pre_benchmark.sh" >> ${CI_SCRIPT} | ||
echo "${GH_SCRIPT_DIR}/benchmark.sh" >> ${CI_SCRIPT} | ||
echo "${GH_SCRIPT_DIR}/post_benchmark.sh" >> ${CI_SCRIPT} | ||
else | ||
echo "${GH_SCRIPT_DIR}/build.sh" >> ${CI_SCRIPT} | ||
echo "${GH_SCRIPT_DIR}/test_codecov.sh" >> ${CI_SCRIPT} | ||
fi | ||
|
||
chmod +x ${CI_SCRIPT} | ||
else | ||
if [[ "${STAGE}" =~ "build" ]]; then | ||
CI_SCRIPT="${GH_SCRIPT_DIR}/build.sh" | ||
elif [[ "${STAGE}" =~ "test" ]]; then | ||
CI_SCRIPT="${GH_SCRIPT_DIR}/test.sh" | ||
else | ||
CI_SCRIPT="${GH_SCRIPT_DIR}/${STAGE}.sh" | ||
fi | ||
fi | ||
|
||
${CI_SCRIPT} | ||
fi |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.