Skip to content

Commit 6247d32

Browse files
committed
2 parents 780424c + 36f1e65 commit 6247d32

File tree

52 files changed

+29059
-25819
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+29059
-25819
lines changed

.github/workflows/build-notebooks-TEMPLATE.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ name: Build & Publish Notebook Servers (TEMPLATE)
1818

1919
jobs:
2020
build:
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-22.04
2222
env:
2323
# GitHub image registry used for storing $(CONTAINER_ENGINE)'s cache
2424
CACHE: "ghcr.io/${{ github.repository }}/workbench-images/build-cache"
@@ -97,6 +97,7 @@ jobs:
9797

9898
- name: Configure Podman
9999
run: |
100+
set -x
100101
mkdir -p $HOME/.config/containers/
101102
cp ci/cached-builds/containers.conf $HOME/.config/containers/containers.conf
102103
cp ci/cached-builds/storage.conf $HOME/.config/containers/storage.conf

.github/workflows/code-quality.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,13 @@ jobs:
4545

4646
- name: Install poetry
4747
if: steps.cache-poetry-restore.outputs.cache-hit != 'true'
48-
run: pip install poetry==${{ env.poetry_version }}
48+
run: pipx install poetry==${{ env.poetry_version }}
49+
env:
50+
PIPX_HOME: /home/runner/.local/pipx
51+
PIPX_BIN_DIR: /home/runner/.local/bin
52+
53+
- name: Check poetry is installed correctly
54+
run: poetry env info
4955

5056
- name: Save cache
5157
if: steps.cache-poetry-restore.outputs.cache-hit != 'true'

codeserver/ubi9-python-3.11/run-code-server.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ universal_json_settings='{
4646
"python.defaultInterpreterPath": "/opt/app-root/bin/python3",
4747
"telemetry.telemetryLevel": "off",
4848
"telemetry.enableTelemetry": false,
49-
"workbench.enableExperiments": false
49+
"workbench.enableExperiments": false,
50+
"extensions.autoCheckUpdates": false,
51+
"extensions.autoUpdate": false
5052
}'
5153

5254
# Define python debuger settings

codeserver/ubi9-python-3.9/run-code-server.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ universal_json_settings='{
4646
"python.defaultInterpreterPath": "/opt/app-root/bin/python3",
4747
"telemetry.telemetryLevel": "off",
4848
"telemetry.enableTelemetry": false,
49-
"workbench.enableExperiments": false
49+
"workbench.enableExperiments": false,
50+
"extensions.autoCheckUpdates": false,
51+
"extensions.autoUpdate": false
5052
}'
5153

5254
# Define python debuger settings

intel/runtimes/ml/ubi9-python-3.11/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ plotly = "~=5.16.1"
1919
scipy = "~=1.11.2"
2020
scikit-learn = "~=1.3.1"
2121
skl2onnx = "~=1.15.0"
22-
codeflare-sdk = "~=0.19.1"
22+
codeflare-sdk = "~=0.22.0"
2323
# DB connectors
2424
pymongo = "~=4.5.0"
2525
psycopg = "~=3.1.10"

intel/runtimes/ml/ubi9-python-3.11/Pipfile.lock

Lines changed: 1268 additions & 1082 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

intel/runtimes/pytorch/ubi9-python-3.11/Pipfile.cpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ plotly = "~=5.16.1"
3333
scikit-learn = "*"
3434
scipy = "~=1.11.2"
3535
skl2onnx = "~=1.15.0"
36-
codeflare-sdk = "~=0.13.0"
36+
codeflare-sdk = "~=0.22.0"
3737
# DB connectors
3838
pymongo = "~=4.5.0"
3939
psycopg = "~=3.1.10"

intel/runtimes/pytorch/ubi9-python-3.11/Pipfile.gpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ plotly = "~=5.16.1"
2828
scikit-learn = "*"
2929
scipy = "~=1.11.2"
3030
skl2onnx = "~=1.15.0"
31-
codeflare-sdk = "~=0.13.0"
31+
codeflare-sdk = "~=0.22.0"
3232
# DB connectors
3333
pymongo = "~=4.5.0"
3434
psycopg = "~=3.1.10"

intel/runtimes/pytorch/ubi9-python-3.11/Pipfile.lock.cpu

Lines changed: 2131 additions & 1910 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

intel/runtimes/pytorch/ubi9-python-3.11/Pipfile.lock.gpu

Lines changed: 2132 additions & 1909 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)