Skip to content

Commit

Permalink
Minor fixes in platform install script (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsantn authored Dec 4, 2024
1 parent 7ccb3e3 commit e272f2e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions buildscripts/build-bodo-from-source-platform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
1. SSH into the cluster node (`My Notebook` -> `BODO CLUSTERS` -> `Terminal` beside the running cluster).
1. Copy `install.sh` to the node.
1. Run the script: `bash -i install.sh` (recommended in directory `/home/bodo`).
1. Enter your GitHub PAT and branch to checkout when prompted (alternatively,
`GITHUB_TOKEN` and `BRANCH_NAME` can be set as environment variables)
1. Run `conda activate DEV` to enter the environment created by the install
1. Enter your GitHub PAT to checkout when prompted (alternatively,
`GITHUB_TOKEN` can be set as environment variable)
1. Run `pixi shell -e platform-dev` to enter the environment created by the install
script.

> [!NOTE]
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/build-bodo-from-source-platform/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [ -z "$GITHUB_TOKEN" ]; then
fi

# Clone the repo and checkout the desired branch
psh git clone -b develop https://$GITHUB_TOKEN@github.com/bodo-ai/Bodo.git
psh git clone -b main https://$GITHUB_TOKEN@github.com/bodo-ai/Bodo.git

# Install Pixi
psh bash -c 'curl -fsSL https://pixi.sh/install.sh | bash'
Expand Down

0 comments on commit e272f2e

Please sign in to comment.