Skip to content

Commit

Permalink
bump feature versions
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed Jan 3, 2024
1 parent 8bd2efa commit 5384ea1
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion features/src/cccl-dev/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "NVIDIA CCCL development utilities",
"id": "cccl-dev",
"version": "24.2.0",
"version": "24.2.1",
"description": "A feature to install NVIDIA CCCL development utilities",
"options": {
"litVersion": {
Expand Down
2 changes: 1 addition & 1 deletion features/src/cccl-dev/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ fi

check_packages ${PKG[@]} ${PKG_TO_REMOVE[@]};

source /etc/lsb-release
source /etc/lsb-release;

if [[ ! "23.04" > "${DISTRIB_RELEASE}" ]]; then
BREAK_PACKAGES="--break-system-packages"
Expand Down
2 changes: 1 addition & 1 deletion features/src/cuda/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "CUDA Toolkit",
"id": "cuda",
"version": "24.2.1",
"version": "24.2.2",
"description": "A feature to install the NVIDIA CUDA Toolkit",
"options": {
"version": {
Expand Down
2 changes: 1 addition & 1 deletion features/src/gcc/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "GCC",
"id": "gcc",
"version": "24.2.0",
"version": "24.2.1",
"description": "A feature to install gcc",
"options": {
"version": {
Expand Down
1 change: 0 additions & 1 deletion features/src/gcc/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ GCC_VERSION_DEFAULT="$(gcc -dumpversion)";
GCC_VERSION="${VERSION:-${GCC_VERSION_DEFAULT}}";

if [[ "${GCC_VERSION}" != "${GCC_VERSION_DEFAULT}" ]]; then
apt-add-repository -y ppa:ubuntu-toolchain-r/test;
apt-add-repository -y ppa:ubuntu-toolchain-r/ppa;
# Install gcc-${GCC_VERSION}
DEBIAN_FRONTEND=noninteractive \
Expand Down
2 changes: 1 addition & 1 deletion features/src/utils/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "devcontainer-utils",
"id": "utils",
"version": "24.2.1",
"version": "24.2.2",
"description": "A feature to install RAPIDS devcontainer utility scripts",
"containerEnv": {
"BASH_ENV": "/etc/bash.bash_env"
Expand Down
2 changes: 2 additions & 0 deletions features/src/utils/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ check_packages \
bash-completion \
ca-certificates ;

source /etc/lsb-release;

if [[ ! "23.04" > "${DISTRIB_RELEASE}" ]]; then
BREAK_PACKAGES="--break-system-packages"
fi
Expand Down

0 comments on commit 5384ea1

Please sign in to comment.