Skip to content

Commit ea37e1d

Browse files
committed
Disable Azure ML image build for now
The builds for Azure ML continue to fail due to python package incompatibilities introduced upstream. Add this to the issues to resolve in: - #562
1 parent 36cff9c commit ea37e1d

File tree

3 files changed

+4
-46
lines changed

3 files changed

+4
-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

0 commit comments

Comments
 (0)