Skip to content

Commit 03894c4

Browse files
authored
Merge pull request #859 from rstudio/dev
Merge dev to main
2 parents 8cabf5e + 6d179dc commit 03894c4

File tree

7 files changed

+12
-46
lines changed

7 files changed

+12
-46
lines changed

.github/workflows/build-bake.yaml

Lines changed: 1 addition & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- main
77
- dev
88
pull_request:
9-
9+
1010
name: Release - Build, Test, and Push
1111
jobs:
1212
setup:
@@ -374,44 +374,3 @@ jobs:
374374
snyk-org: ${{ secrets.SNYK_ORG }}
375375
snyk-token: '${{ secrets.SNYK_TOKEN }}'
376376

377-
workbench-for-microsoft-azure-ml:
378-
needs: [setup]
379-
name: Workbench for Microsoft Azure ML
380-
runs-on: ubuntu-latest-8x
381-
382-
concurrency:
383-
group: bake-waml-${{ github.ref }}
384-
cancel-in-progress: true
385-
386-
env:
387-
target: workbench-for-microsoft-azure-ml
388-
GIT_SHA: ${{ needs.setup.outputs.GIT_SHA }}
389-
390-
steps:
391-
- name: Checkout
392-
if: github.event_name == 'schedule'
393-
uses: actions/checkout@v4
394-
with:
395-
ref: 'main'
396-
397-
- name: Checkout
398-
if: github.event_name != 'schedule'
399-
uses: actions/checkout@v4
400-
401-
- name: Set up Docker Buildx
402-
uses: docker/setup-buildx-action@v3
403-
id: setup-buildx
404-
with:
405-
buildkitd-config: ./share/buildkitd.toml
406-
407-
- name: Build, Test, and Push
408-
uses: ./.github/actions/bake-test-push
409-
with:
410-
target: ${{ env.target }}
411-
push-image: ${{ github.ref == 'refs/heads/main' || github.event_name == 'schedule' }}
412-
ghcr-token: ${{ secrets.GITHUB_TOKEN }}
413-
dockerhub-username: ${{ secrets.DOCKER_HUB_USERNAME }}
414-
dockerhub-token: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
415-
gcp-json: '${{ secrets.GCP_ARTIFACT_REGISTRY_JSON }}'
416-
snyk-org: ${{ secrets.SNYK_ORG }}
417-
snyk-token: '${{ secrets.SNYK_TOKEN }}'

.github/workflows/build-manual.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,15 @@ jobs:
126126
else
127127
VERSION="${{ inputs.version }}"
128128
fi
129-
129+
130130
# Set the appropriate env var
131131
suffix="_VERSION"
132132
if [[ "${{ inputs.type }}" == "preview" ]]; then
133133
suffix="_PREVIEW_VERSION"
134134
elif [[ "${{ inputs.type }}" == "daily" ]]; then
135135
suffix="_DAILY_VERSION"
136136
fi
137-
137+
138138
product="${{ inputs.product }}"
139139
if [[ "$product" == "connect" ]] || [[ "$product" == "connect-content-init" ]] || [[ "$product" == "content-images" ]]; then
140140
product="CONNECT"
@@ -143,7 +143,7 @@ jobs:
143143
else
144144
product="WORKBENCH"
145145
fi
146-
146+
147147
echo "Setting $product$suffix=$VERSION"
148148
echo "$product$suffix=$VERSION" >> $GITHUB_ENV
149149

.github/workflows/update-readme.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
- {prefix: '', repository: 'content-pro', readme_path: './content/pro/README.md'}
2525
- {prefix: 'rstudio-', repository: 'package-manager', readme_path: './package-manager/README.md'}
2626
- {prefix: '', repository: 'r-session-complete', readme_path: './r-session-complete/README.md'}
27-
- {prefix: 'rstudio-', repository: 'workbench-for-microsoft-azure-ml', readme_path: './workbench-for-microsoft-azure-ml/README.md'}
2827

2928
steps:
3029
- name: Check Out Repo

r-session-complete/Dockerfile.ubuntu2204

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ RUN ln -s /lib/rstudio-server/bin/quarto/bin/quarto /usr/local/bin/quarto
4444
RUN $SCRIPTS_DIR/install_quarto.sh --install-tinytex --add-path-tinytex
4545

4646
RUN /opt/python/"${PYTHON_VERSION}"/bin/python -m venv /opt/python/jupyter \
47+
&& /opt/python/jupyter/bin/python -m pip install --upgrade pip \
48+
&& /opt/python/jupyter/bin/python -m pip install --upgrade setuptools \
4749
&& /opt/python/jupyter/bin/python -m pip install \
4850
jupyterlab~=4.2.4 \
4951
notebook \

workbench-for-google-cloud-workstations/Dockerfile.ubuntu2204

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@ RUN mkdir -p /opt/rstudio-license/ \
118118

119119
### Install Jupyter and extensions ###
120120
RUN /opt/python/"${PYTHON_VERSION_JUPYTER}"/bin/python -m venv /opt/python/jupyter \
121+
&& /opt/python/jupyter/bin/python -m pip install --upgrade pip \
122+
&& /opt/python/jupyter/bin/python -m pip install --upgrade setuptools \
121123
&& /opt/python/jupyter/bin/python -m pip install\
122124
jupyterlab~=4.2.4 \
123125
notebook \

workbench-for-microsoft-azure-ml/Dockerfile.ubuntu2204

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ RUN apt-get update --fix-missing -qq \
8888

8989
### Install Jupyter and extensions ###
9090
RUN /opt/python/"${PYTHON_VERSION_JUPYTER}"/bin/python -m venv /opt/python/jupyter \
91+
&& /opt/python/jupyter/bin/python -m pip install --upgrade pip \
92+
&& /opt/python/jupyter/bin/python -m pip install --upgrade setuptools \
9193
&& /opt/python/jupyter/bin/pip install \
9294
jupyterlab~=4.2.4 \
9395
notebook \

workbench/Dockerfile.ubuntu2204

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ COPY startup/* /startup/base/
8080
COPY supervisord.conf /etc/supervisor/supervisord.conf
8181

8282
RUN /opt/python/"${PYTHON_VERSION_JUPYTER}"/bin/python -m venv /opt/python/jupyter \
83+
&& /opt/python/jupyter/bin/python -m pip install --upgrade pip \
84+
&& /opt/python/jupyter/bin/python -m pip install --upgrade setuptools \
8385
&& /opt/python/jupyter/bin/python -m pip install \
8486
jupyterlab~=4.2.4 \
8587
notebook \

0 commit comments

Comments
 (0)