-
Notifications
You must be signed in to change notification settings - Fork 7
Update RCC to v20.3.3 and Action Server to 2.16.2 #237
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,7 +12,7 @@ SET activatePath=%scriptPath%\activate.bat | |
|
|
||
| echo | ||
| :: Get RCC, binary with which we're going to create the master environment. | ||
| SET rccUrl=https://cdn.sema4.ai/rcc/releases/v20.3.2/windows64/rcc.exe | ||
| SET rccUrl=https://cdn.sema4.ai/rcc/releases/v20.3.3/windows64/rcc.exe | ||
|
||
| IF NOT EXIST "%rccPath%" ( | ||
| curl -o %rccPath% %rccUrl% --fail || goto env_error | ||
| ) | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,7 +12,7 @@ ACTIVATE_PATH="$SCRIPT_PATH/activate.sh" | |
| echo | ||
|
|
||
| # Get RCC binary based on platform | ||
| RCC_URL="https://cdn.sema4.ai/rcc/releases/v20.3.2" | ||
| RCC_URL="https://cdn.sema4.ai/rcc/releases/v20.3.3" | ||
|
||
| if [[ "$(uname)" == "Darwin" ]]; then | ||
| RCC_URL="$RCC_URL/macos-arm64/rcc" | ||
| else | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -63,7 +63,7 @@ def download_rcc( | |
| """ | ||
| from sema4ai_code.tools import download_tool | ||
|
|
||
| RCC_VERSION = "v20.3.2" | ||
| RCC_VERSION = "v20.3.3" | ||
|
||
| download_tool( | ||
| Tool.RCC, | ||
| location, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -148,7 +148,7 @@ async function downloadRcc( | |
| throw new Error("Currently only Linux amd64 is supported."); | ||
| } | ||
| } | ||
| const RCC_VERSION = "v20.3.2"; | ||
| const RCC_VERSION = "v20.3.3"; | ||
|
||
| const prefix = "https://cdn.sema4.ai/rcc/releases/" + RCC_VERSION; | ||
| const url: string = prefix + relativePath; | ||
| return await downloadWithProgress(url, progress, token, location); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of hardcoding the RCC version in the workflow, consider using a repository variable or workflow input to avoid editing the workflow on each bump. Example: RCC_VERSION: ${{ vars.RCC_VERSION }} and define RCC_VERSION in repository Variables.