Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit cf5412d

Browse files
Merge pull request #1603 from microsoft/samruddhikhandale/disable-img-processing
image processing updates
2 parents 9ead9df + 88a8316 commit cf5412d

File tree

22 files changed

+3
-23
lines changed

22 files changed

+3
-23
lines changed

.github/workflows/push-and-package.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ on:
88
jobs:
99
build-and-push:
1010
name: Build and push images
11-
strategy:
12-
matrix:
13-
page: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
14-
page-total: [10]
15-
fail-fast: false
1611
runs-on: ubuntu-latest
1712
steps:
1813
- name: Free more space
@@ -54,9 +49,7 @@ jobs:
5449
5550
# Build and push images
5651
yarn install
57-
build/vscdc push --page ${{ matrix.page }} \
58-
--pageTotal ${{ matrix.page-total }} \
59-
--release ${{ steps.get_tag_name.outputs.tag }} \
52+
build/vscdc push --release ${{ steps.get_tag_name.outputs.tag }} \
6053
--github-repo ${{ github.repository }} \
6154
--registry ${{ secrets.REGISTRY }} \
6255
--registry-path ${{ secrets.REGISTRY_BASE_PATH }} \

.github/workflows/push-dev.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@ jobs:
99
build-and-push:
1010
name: Build and push
1111
if: "!contains(github.event.head_commit.message, 'Automated update') && !contains(github.event.head_commit.message, 'CI ignore')"
12-
strategy:
13-
matrix:
14-
page: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
15-
page-total: [10]
16-
fail-fast: true
1712
runs-on: ubuntu-latest
1813
steps:
1914
- name: Free more space
@@ -50,9 +45,7 @@ jobs:
5045
if [ "$GIT_BRANCH" == "" ]; then
5146
GIT_BRANCH=main
5247
fi
53-
build/vscdc push --page ${{ matrix.page }} \
54-
--pageTotal ${{ matrix.page-total }} \
55-
--release $GIT_BRANCH \
48+
build/vscdc push --release $GIT_BRANCH \
5649
--github-repo ${{ github.repository }} \
5750
--registry ${{ secrets.REGISTRY }} \
5851
--registry-path ${{ secrets.REGISTRY_BASE_PATH }} \

build/config.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,7 @@
2828
"devcontainer-collection.json"
2929
],
3030

31-
"needsDedicatedPage": [
32-
"codespaces-linux",
33-
"php",
34-
"python-3"
35-
],
31+
"needsDedicatedPage": [],
3632

3733
"flattenBaseImage": [],
3834

File renamed without changes.

repository-containers/images/github.com/microsoft/vscode/definition-manifest.json

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
"build": {
44
"latest": true,
55
"rootDistro": "debian",
6-
"parent": "typescript-node",
7-
"parentVariant": "16-bullseye",
86
"tags": [
97
"repos/microsoft/vscode:${VERSION}"
108
],

0 commit comments

Comments
 (0)