Skip to content

Commit 5b05e5b

Browse files
authored
Temporarily Disable EOL annotation generation (#2065)
This PR temporarily disables generation of new lifecycle artifacts while I work on one-time cleanup and re-engineering the existing system. Tracking issue: #2056
1 parent f941e6e commit 5b05e5b

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

eng/pipelines/annotate-eol-digests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ parameters:
88

99
variables:
1010
- template: templates/variables/image-builder.yml
11+
# Temporarily disabled due to https://github.com/dotnet/docker-tools/issues/2056.
1112
- name: publishEolAnnotations
12-
value: true
13+
value: false
1314
- name: dryRunArg
1415
value: ""
1516

eng/pipelines/cleanup-acr-images-official.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ parameters:
1717

1818
variables:
1919
- template: /eng/pipelines/templates/variables/common.yml@self
20+
# Temporarily disabled due to https://github.com/dotnet/docker-tools/issues/2056.
2021
- name: publishEolAnnotations
21-
value: true
22+
value: false
2223
readonly: true
2324

2425
extends:

eng/pipelines/dotnet-buildtools-image-builder-official.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ variables:
2525
# Uses GitHub token to access the versions repo
2626
# Also uses DockerHub registry creds to avoid rate limiting
2727
- template: /eng/docker-tools/templates/variables/dotnet/secrets.yml@self
28+
# Temporarily disabled due to https://github.com/dotnet/docker-tools/issues/2056.
2829
- name: publishEolAnnotations
29-
value: true
30+
value: false
3031

3132
resources:
3233
repositories:

eng/pipelines/templates/stages/cleanup-acr-images.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,14 @@ stages:
6868
# acr: ${{ parameters.publishConfig.BuildRegistry }}
6969
# action: pruneDangling
7070
# age: 0
71+
7172
- job: Annotations
7273
timeoutInMinutes: 120
7374
variables:
7475
dryRunArg: ${{ iif(parameters.enableDryRun, '--dry-run', '') }}
76+
# EOL annotation generation temporarily disabled due to https://github.com/dotnet/docker-tools/issues/2056.
77+
# Until the system is cleaned up and improved/redesigned, stop generating additional lifecycle artifacts.
78+
condition: false
7579
steps:
7680
- template: /eng/docker-tools/templates/steps/init-common.yml@self
7781
parameters:

0 commit comments

Comments
 (0)