Skip to content

Commit 178348b

Browse files
authored
Merge pull request #1159 from elezar/fix-gitlab-references
[no-relnote] Replace GitLab with GitHub URLs
2 parents 433687e + 4687909 commit 178348b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ The [user guide](https://docs.nvidia.com/datacenter/cloud-native/container-toolk
2828
[Checkout the Contributing document!](CONTRIBUTING.md)
2929

3030
* Please let us know by [filing a new issue](https://github.com/NVIDIA/nvidia-container-toolkit/issues/new)
31-
* You can contribute by creating a [merge request](https://gitlab.com/nvidia/container-toolkit/container-toolkit/-/merge_requests/new) to our public GitLab repository
31+
* You can contribute by creating a [pull request](https://github.com/NVIDIA/nvidia-container-toolkit/compare) to our public GitHub repository

docker/Dockerfile.debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ COPY deployments/systemd/ .
5959

6060
RUN dch --create --package="${PKG_NAME}" \
6161
--newversion "${REVISION}" \
62-
"See https://gitlab.com/nvidia/container-toolkit/container-toolkit/-/blob/${GIT_COMMIT}/CHANGELOG.md for the changelog" && \
62+
"See https://github.com/NVIDIA/nvidia-container-toolkit/blob/${GIT_COMMIT}/CHANGELOG.md for the changelog" && \
6363
dch --append "Bump libnvidia-container dependency to ${LIBNVIDIA_CONTAINER1_VERSION}" && \
6464
dch -r "" && \
6565
if [ "$REVISION" != "$(dpkg-parsechangelog --show-field=Version)" ]; then exit 1; fi

docker/Dockerfile.ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ COPY deployments/systemd/ .
5757

5858
RUN dch --create --package="${PKG_NAME}" \
5959
--newversion "${REVISION}" \
60-
"See https://gitlab.com/nvidia/container-toolkit/container-toolkit/-/blob/${GIT_COMMIT}/CHANGELOG.md for the changelog" && \
60+
"See https://github.com/NVIDIA/nvidia-container-toolkit/blob/${GIT_COMMIT}/CHANGELOG.md for the changelog" && \
6161
dch --append "Bump libnvidia-container dependency to ${REVISION}" && \
6262
dch -r "" && \
6363
if [ "$REVISION" != "$(dpkg-parsechangelog --show-field=Version)" ]; then exit 1; fi

packaging/rpm/SPECS/nvidia-container-toolkit.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ fi
8585
%changelog
8686
# As of 1.10.0-1 we generate the release information automatically
8787
* %{release_date} NVIDIA CORPORATION <cudatools@nvidia.com> %{version}-%{release}
88-
- See https://gitlab.com/nvidia/container-toolkit/container-toolkit/-/blob/%{git_commit}/CHANGELOG.md
88+
- See https://github.com/NVIDIA/nvidia-container-toolkit/blob/%{git_commit}/CHANGELOG.md
8989
- Bump libnvidia-container dependency to libnvidia-container-tools == %{version}-%{release}
9090

9191
# The BASE package consists of the NVIDIA Container Runtime and the NVIDIA Container Toolkit CLI.

scripts/extract-packages.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
function assert_usage() {
1818
echo "Incorrect arguments: $*" >&2
1919
echo "$(basename "${BASH_SOURCE[0]}") PACKAGE_IMAGE_NAME:PACKAGE_IMAGE_TAG" >&2
20-
echo -e "\\tPACKAGE_IMAGE: container image holding packages [e.g. registry.gitlab.com/nvidia/container-toolkit/container-toolkit/staging/container-toolkit]" >&2
20+
echo -e "\\tPACKAGE_IMAGE: container image holding packages [e.g. ghcr.io/nvidia/container-toolkit]" >&2
2121
echo -e "\\tPACKAGE_TAG: tag for container image holding packages. [e.g. 1a2b3c4-packaging]" >&2
2222
exit 1
2323
}

scripts/release-kitmaker-artifactory.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ function upload_archive() {
160160
props+=("platform=${os}-${arch}")
161161
props+=("changelist=${GIT_COMMIT_SHORT}")
162162
props+=("branch=${branch}")
163-
props+=("source=https://gitlab.com/nvidia/container-toolkit/container-toolkit")
163+
props+=("source=https://github.com/NVIDIA/nvidia-container-toolkit")
164164
# Package properties:
165165
props+=("package.epoch=${IMAGE_EPOCH}")
166166
props+=("package.version=${VERSION}")

0 commit comments

Comments
 (0)