Skip to content

Commit bfc6306

Browse files
committed
Update eng/common references to eng/docker-tools
1 parent 20d739e commit bfc6306

File tree

13 files changed

+30
-30
lines changed

13 files changed

+30
-30
lines changed

.github/workflows/lint-code-base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
uses: github/super-linter@v6 # https://github.com/github/super-linter
2626
env:
2727
DEFAULT_BRANCH: main
28-
FILTER_REGEX_EXCLUDE: eng/common/.*|eng/readme-templates/.*|.portal-docs/.*
28+
FILTER_REGEX_EXCLUDE: eng/docker-tools/.*|eng/readme-templates/.*|.portal-docs/.*
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
VALIDATE_MARKDOWN: true

build-and-test.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ if ($Repos.Count -eq 0) {
2424
else {
2525
$Paths = @()
2626
$Repos | foreach {
27-
27+
2828
$Paths += "src/$_/$Version/$OS"
2929
}
3030
$testCategories = $Repos
3131
}
3232

3333
if ($Mode -eq "BuildAndTest" -or $Mode -eq "Build") {
34-
& ./eng/common/build.ps1 `
34+
& ./eng/docker-tools/build.ps1 `
3535
-Version $Version `
3636
-OS $OS `
3737
-Paths $Paths `

eng/dockerfile-templates/Get-GeneratedDockerfiles.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ $onDockerfilesGeneratedLinux = {
2222
# On Windows, ImageBuilder is run locally due to limitations with running Docker client within a container.
2323
# Remove when https://github.com/dotnet/docker-tools/issues/159 is resolved
2424
if ($dockerOs -eq "windows") {
25-
& $PSScriptRoot/../common/Invoke-ImageBuilder.ps1 `
25+
& $PSScriptRoot/../docker-tools/Invoke-ImageBuilder.ps1 `
2626
-ImageBuilderArgs $imageBuilderArgs
2727
} else {
28-
& $PSScriptRoot/../common/Invoke-ImageBuilder.ps1 `
28+
& $PSScriptRoot/../docker-tools/Invoke-ImageBuilder.ps1 `
2929
-ImageBuilderArgs $imageBuilderArgs `
3030
-OnCommandExecuted $onDockerfilesGeneratedLinux
3131
}

eng/pipelines/cg-detection.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ variables:
2323
value: false
2424

2525
extends:
26-
template: /eng/common/templates/1es-official.yml@self
26+
template: /eng/docker-tools/templates/1es-official.yml@self
2727
parameters:
2828
cgDryRun: ${{ parameters.cgDryRun }}
2929
stages:
3030
- stage: CgDetection
3131
displayName: CG Detection
3232
jobs:
33-
- template: /eng/common/templates/jobs/cg-build-projects.yml@self
33+
- template: /eng/docker-tools/templates/jobs/cg-build-projects.yml@self
3434
parameters:
3535
cgDryRun: ${{ parameters.cgDryRun }}

eng/pipelines/dotnet-framework-pr-no-cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ variables:
2424
readonly: true
2525

2626
stages:
27-
- template: /eng/common/templates/stages/dotnet/publish-config-nonprod.yml@self
27+
- template: /eng/docker-tools/templates/stages/dotnet/publish-config-nonprod.yml@self
2828
parameters:
2929
stagesTemplate: /eng/pipelines/stages/dotnet-framework-base.yml@self
3030
stagesTemplateParameters:

eng/pipelines/dotnet-framework-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ variables:
2323
value: manifest.json
2424

2525
stages:
26-
- template: /eng/common/templates/stages/dotnet/publish-config-nonprod.yml@self
26+
- template: /eng/docker-tools/templates/stages/dotnet/publish-config-nonprod.yml@self
2727
parameters:
2828
stagesTemplate: /eng/pipelines/stages/dotnet-framework-base.yml@self
2929
stagesTemplateParameters:

eng/pipelines/dotnet-framework-samples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ parameters:
2828

2929
variables:
3030
- template: /eng/pipelines/variables/common.yml@self
31-
- template: /eng/common/templates/variables/dotnet/secrets${{ iif(contains(variables['Build.DefinitionName'], '-official'), '', '-unofficial') }}.yml@self
31+
- template: /eng/docker-tools/templates/variables/dotnet/secrets${{ iif(contains(variables['Build.DefinitionName'], '-official'), '', '-unofficial') }}.yml@self
3232
- name: manifest
3333
value: manifest.samples.json
3434
- name: imageInfoVariant
3535
value: "-samples"
3636

3737
extends:
38-
template: /eng/common/templates/1es.yml@self
38+
template: /eng/docker-tools/templates/1es.yml@self
3939
parameters:
4040
reposToExcludeFromScanning:
4141
- VersionsRepo
4242
stages:
43-
- template: /eng/common/templates/stages/dotnet/publish-config-${{ iif(contains(variables['Build.DefinitionName'], '-official'), 'prod', 'nonprod') }}.yml@self
43+
- template: /eng/docker-tools/templates/stages/dotnet/publish-config-${{ iif(contains(variables['Build.DefinitionName'], '-official'), 'prod', 'nonprod') }}.yml@self
4444
parameters:
4545
sourceBuildPipelineRunId: ${{ parameters.sourceBuildPipelineRunId }}
4646
stagesTemplate: /eng/pipelines/stages/dotnet-framework-base.yml@self

eng/pipelines/dotnet-framework.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ parameters:
2828

2929
variables:
3030
- template: /eng/pipelines/variables/common.yml@self
31-
- template: /eng/common/templates/variables/dotnet/secrets${{ iif(contains(variables['Build.DefinitionName'], '-official'), '', '-unofficial') }}.yml@self
31+
- template: /eng/docker-tools/templates/variables/dotnet/secrets${{ iif(contains(variables['Build.DefinitionName'], '-official'), '', '-unofficial') }}.yml@self
3232
- name: manifest
3333
value: manifest.json
3434
- name: mcrImageIngestionTimeout
3535
value: "00:30:00"
3636

3737
extends:
38-
template: /eng/common/templates/1es.yml@self
38+
template: /eng/docker-tools/templates/1es.yml@self
3939
parameters:
4040
reposToExcludeFromScanning:
4141
- VersionsRepo
4242
stages:
43-
- template: /eng/common/templates/stages/dotnet/publish-config-${{ iif(contains(variables['Build.DefinitionName'], '-official'), 'prod', 'nonprod') }}.yml@self
43+
- template: /eng/docker-tools/templates/stages/dotnet/publish-config-${{ iif(contains(variables['Build.DefinitionName'], '-official'), 'prod', 'nonprod') }}.yml@self
4444
parameters:
4545
sourceBuildPipelineRunId: ${{ parameters.sourceBuildPipelineRunId }}
4646
stagesTemplate: /eng/pipelines/stages/dotnet-framework-base.yml@self

eng/pipelines/stages/dotnet-framework-base.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ parameters:
2424

2525
stages:
2626
- ${{ if ne(variables['Build.Reason'], 'PullRequest') }}:
27-
- template: /eng/common/templates/stages/setup-service-connections.yml@self
27+
- template: /eng/docker-tools/templates/stages/setup-service-connections.yml@self
2828
parameters:
2929
serviceConnections:
3030
- name: ${{ parameters.publishConfig.internalMirrorAcr.serviceConnection.name }}
@@ -33,7 +33,7 @@ stages:
3333
- ${{ each serviceConnection in parameters.additionalServiceConnections }}:
3434
- name: ${{ serviceConnection.name }}
3535

36-
- template: /eng/common/templates/stages/dotnet/build-test-publish-repo.yml@self
36+
- template: /eng/docker-tools/templates/stages/dotnet/build-test-publish-repo.yml@self
3737
parameters:
3838
publishConfig: ${{ parameters.publishConfig }}
3939
internalProjectName: ${{ parameters.internalProjectName }}

eng/pipelines/update-readmes.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ variables:
77
value: manifest.json
88

99
extends:
10-
template: /eng/common/templates/1es-official.yml@self
10+
template: /eng/docker-tools/templates/1es-official.yml@self
1111
parameters:
1212
stages:
1313
- stage: UpdateReadmes
@@ -16,6 +16,6 @@ extends:
1616
- job: UpdateReadmes
1717
displayName: Update Readmes
1818
steps:
19-
- template: /eng/common/templates/steps/init-docker-linux.yml@self
20-
- template: /eng/common/templates/steps/publish-readmes.yml@self
21-
- template: /eng/common/templates/steps/cleanup-docker-linux.yml@self
19+
- template: /eng/docker-tools/templates/steps/init-docker-linux.yml@self
20+
- template: /eng/docker-tools/templates/steps/publish-readmes.yml@self
21+
- template: /eng/docker-tools/templates/steps/cleanup-docker-linux.yml@self

0 commit comments

Comments
 (0)