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 google-cloud-sdk to bare-metal prognostic run environments #2374

Merged
merged 1 commit into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .environment-scripts/gaea-c5/install_base_software.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ conda config --add pkgs_dirs $CONDA_PREFIX/pkgs
conda config --add envs_dirs $CONDA_PREFIX/envs
conda deactivate

conda create -n $CONDA_ENV -c conda-forge python==3.8.10 pip pip-tools
conda create -n $CONDA_ENV -c conda-forge python==3.8.10 google-cloud-sdk pip pip-tools
conda activate $CONDA_ENV

echo "Compiler settings:"
Expand Down
2 changes: 1 addition & 1 deletion .environment-scripts/gaea/install_base_software.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ conda config --add pkgs_dirs $CONDA_PREFIX/pkgs
conda config --add envs_dirs $CONDA_PREFIX/envs
conda deactivate

conda create -n $CONDA_ENV -c conda-forge python==3.8.10 pip pip-tools
conda create -n $CONDA_ENV -c conda-forge python==3.8.10 google-cloud-sdk pip pip-tools
conda activate $CONDA_ENV

echo "Compiler settings:"
Expand Down
2 changes: 1 addition & 1 deletion .environment-scripts/stellar/install_base_software.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ conda deactivate
# preventing a conflict with system versions of the two libraries on Stellar.
# See discussion in https://github.com/conda/conda/issues/10241
# for more background
conda create --yes -n $CONDA_ENV -c conda-forge python==3.8.10 libssh pip pip-tools
conda create --yes -n $CONDA_ENV -c conda-forge python==3.8.10 google-cloud-sdk libssh pip pip-tools
conda activate $CONDA_ENV

echo "Python settings:"
Expand Down