Skip to content

Commit 8447b9d

Browse files
authoredFeb 7, 2025
chore(py): update py/bin/setup for ubuntu 22.04 #1850 (#1879)
ISSUE: #1850 CHANGELOG: - [ ] Automatically add license header to a yaml file. - [ ] Update the setup script to include nvm and update the version of go on some machines with older operating systems to unblock them.
1 parent ee4afba commit 8447b9d

File tree

2 files changed

+45
-8
lines changed

2 files changed

+45
-8
lines changed
 

‎py/bin/setup

+42-8
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ fi
1414

1515
TOP_DIR=$(git rev-parse --show-toplevel)
1616

17+
PNPM_VERSION="10.2.0"
18+
NODE_VERSION="23"
19+
NVM_VERSION="0.40.1"
20+
1721
AUDIENCE="eng"
1822
while getopts ":a:" opt; do
1923
case ${opt} in
@@ -91,12 +95,21 @@ function genkit::install_prerequisites() {
9195
python3 \
9296
ripgrep
9397
elif [[ -x "$(command -v apt)" ]]; then
98+
# Check if the OS is Ubuntu 22.04 (or a derivative) since some of our eng
99+
# use it.
100+
if lsb_release -a | grep -q "Description:.*Ubuntu 22.04"; then
101+
sudo add-apt-repository -y ppa:longsleep/golang-backports
102+
sudo apt update
103+
sudo apt install -y golang-go
104+
else
105+
sudo apt install -y golang
106+
fi
107+
94108
# Debian-based systems.
95109
sudo apt install -y \
96110
curl \
97111
fd-find \
98112
gh \
99-
golang \
100113
nodejs \
101114
python3 \
102115
ripgrep
@@ -114,22 +127,45 @@ function genkit::install_prerequisites() {
114127
echo "Unsupported OS. Please install protoc manually."
115128
fi
116129

130+
genkit::install_rust
131+
genkit::install_uv
132+
genkit::install_and_configure_nvm
133+
genkit::install_pnpm
134+
}
135+
136+
function genkit::install_rust() {
117137
# Install rust.
118138
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
119139
rustup update
140+
}
120141

121-
# Install uv for Python versioning, packaging, and workspace management.
142+
# Install uv for Python versioning, packaging, and workspace management.
143+
function genkit::install_uv() {
122144
curl -LsSf https://astral.sh/uv/install.sh | sh
145+
}
123146

124-
# Install pnpm for JavaScript package management.
125-
# See: https://github.com/pnpm/pnpm/issues/6217
147+
# Install pnpm for JavaScript package management.
148+
# See: https://github.com/pnpm/pnpm/issues/6217
149+
function genkit::install_pnpm() {
126150
curl -fsSL https://get.pnpm.io/install.sh |
127151
env ENV="$HOME/.bashrc" \
128152
SHELL="$(which bash)" \
129-
PNPM_VERSION=10.0.0 \
153+
PNPM_VERSION="${PNPM_VERSION}" \
130154
bash -
131155
}
132156

157+
# Install node version manager.
158+
function genkit::install_and_configure_nvm() {
159+
export NVM_DIR="$HOME/.config/nvm"
160+
mkdir -p "$NVM_DIR"
161+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v${NVM_VERSION}/install.sh | bash
162+
[ -s "$NVM_DIR/nvm.sh" ] && source "$NVM_DIR/nvm.sh" # This loads nvm
163+
[ -s "$NVM_DIR/bash_completion" ] && source "$NVM_DIR/bash_completion" # This loads nvm bash_completion
164+
nvm install "${NODE_VERSION}"
165+
nvm use "${NODE_VERSION}"
166+
nvm alias default "${NODE_VERSION}"
167+
}
168+
133169
# Install the Google Cloud SDK.
134170
function genkit::install_google_cloud_sdk() {
135171
# This depends on Python 3.11 and installs it for the user on some systems.
@@ -176,7 +212,6 @@ function genkit::install_pnpm_cli_tools() {
176212
# Biome: https://biomejs.dev/
177213
pnpm add -g \
178214
@biomejs/biome \
179-
genkit-cli \
180215
prettier
181216
}
182217

@@ -220,6 +255,7 @@ function genkit::setup_genkit() {
220255

221256
# Install all the common packages.
222257
function genkit::install_common_packages() {
258+
export PNPM_HOME="$HOME/.local/share/pnpm"
223259
genkit::install_prerequisites
224260
genkit::install_python_cli_tools
225261
genkit::install_docs_cli_tools
@@ -228,7 +264,6 @@ function genkit::install_common_packages() {
228264

229265
# Install all the required tools for CI.
230266
function genkit::install_ci_packages() {
231-
export PNPM_HOME="$HOME/.local/share/pnpm"
232267
genkit::install_common_packages
233268
genkit::install_go_cli_tools_ci
234269
}
@@ -261,5 +296,4 @@ function genkit::main() {
261296
echo "Please restart your shell."
262297
}
263298

264-
# Let's go!
265299
genkit::main

‎tests/specs/generate.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright 2025 Google LLC
2+
# SPDX-License-Identifier: Apache-2.0
3+
14
# This file describes the responses of /util/generate action
25

36
tests:

0 commit comments

Comments
 (0)
Please sign in to comment.