Skip to content
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
4 changes: 2 additions & 2 deletions .github/scripts/openshell-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# Usage:
# source .github/scripts/openshell-version.sh

OPENSHELL_VERSION=0.0.115
OPENSHELL_SHA=f68867b8691e72ba25e0fa7d9ee4f32adbc4701c
OPENSHELL_VERSION=0.0.116
OPENSHELL_SHA=d1155aa70042d3e2ee49dbfa15346b108b7c1d92
Comment thread
waynesun09 marked this conversation as resolved.

export OPENSHELL_VERSION OPENSHELL_SHA

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/user/running-agents-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ fullsend is pinned to — the source of truth is
in the fullsend repo at your release tag (also printed on Fullsend workflow runs).

```bash
export OPENSHELL_VERSION=0.0.115 # check the pin file for the current version
export OPENSHELL_VERSION=0.0.116 # check the pin file for the current version
curl -LsSf https://raw.githubusercontent.com/NVIDIA/OpenShell/v${OPENSHELL_VERSION}/install.sh | OPENSHELL_VERSION=v${OPENSHELL_VERSION} sh
openshell --version
```
Expand Down
2 changes: 1 addition & 1 deletion hack/gitlab-runner-vm/create-vm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ if [ -f "${_openshell_version_sh}" ]; then
# shellcheck source=../../.github/scripts/openshell-version.sh
source "${_openshell_version_sh}"
fi
OPENSHELL_VERSION="${OPENSHELL_VERSION:-0.0.115}"
OPENSHELL_VERSION="${OPENSHELL_VERSION:-0.0.116}"
TEMPLATE="${SCRIPT_DIR}/vm.yaml"
PREFIX="fullsend-gitlab-runner"

Expand Down
2 changes: 1 addition & 1 deletion hack/gitlab-runner-vm/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if [ -f "${_openshell_version_sh}" ]; then
# shellcheck source=../../.github/scripts/openshell-version.sh
source "${_openshell_version_sh}"
fi
OPENSHELL_VERSION="${OPENSHELL_VERSION:-0.0.115}"
OPENSHELL_VERSION="${OPENSHELL_VERSION:-0.0.116}"

EXECUTOR_DIR="${HOME}/gitlab-runner-executor"
BUILDS_DIR="${HOME}/builds"
Expand Down
Loading