Skip to content

Commit 569f4d0

Browse files
move pipelines (#760)
1 parent e888314 commit 569f4d0

5 files changed

Lines changed: 20 additions & 29 deletions

File tree

NuGet.Config.AzureArtifacts

Lines changed: 0 additions & 7 deletions
This file was deleted.

NuGet.Config.AzureArtifacts.Release

Lines changed: 0 additions & 7 deletions
This file was deleted.

Pipelines/asa-pr.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Azure Pipelines
2-
# https://aka.ms/yaml
3-
41
name: ASA_PR_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
52
trigger: none
63
pr:
@@ -21,7 +18,7 @@ resources:
2118
repositories:
2219
- repository: templates
2320
type: git
24-
name: SecurityEngineering/OSS-Tools-Pipeline-Templates
21+
name: General/OSS-Tools-Pipeline-Templates
2522
ref: refs/tags/v2.0.4
2623
- repository: 1esPipelines
2724
type: git
@@ -55,7 +52,7 @@ extends:
5552
dotnetTestArgs: '--filter TestCategory=PipelineSafeTests'
5653
includeNuGetOrg: false
5754
nugetFeedsToUse: 'config'
58-
nugetConfigPath: 'NuGet.Config.AzureArtifacts'
55+
nugetConfigPath: 'nuget.config'
5956
onInit:
6057
- task: NuGetAuthenticate@1
6158

@@ -73,7 +70,7 @@ extends:
7370
artifactName: 'linux-mac-archive'
7471
includeNuGetOrg: false
7572
nugetFeedsToUse: 'config'
76-
nugetConfigPath: 'NuGet.Config.AzureArtifacts'
73+
nugetConfigPath: 'nuget.config'
7774
onInit:
7875
- task: NuGetAuthenticate@1
7976
preBuild:
@@ -88,7 +85,7 @@ extends:
8885
artifactName: 'cli-archive'
8986
includeNuGetOrg: false
9087
nugetFeedsToUse: 'config'
91-
nugetConfigPath: 'NuGet.Config.AzureArtifacts'
88+
nugetConfigPath: 'nuget.config'
9289
onInit:
9390
- task: NuGetAuthenticate@1
9491
preBuild:
@@ -103,7 +100,7 @@ extends:
103100
artifactName: 'nuget-lib-archive'
104101
includeNuGetOrg: false
105102
nugetFeedsToUse: 'config'
106-
nugetConfigPath: 'NuGet.Config.AzureArtifacts'
103+
nugetConfigPath: 'nuget.config'
107104
onInit:
108105
- task: NuGetAuthenticate@1
109106
preBuild:
@@ -118,7 +115,7 @@ extends:
118115
artifactName: 'nuget-cli-archive'
119116
includeNuGetOrg: false
120117
nugetFeedsToUse: 'config'
121-
nugetConfigPath: 'NuGet.Config.AzureArtifacts'
118+
nugetConfigPath: 'nuget.config'
122119
onInit:
123120
- task: NuGetAuthenticate@1
124121
preBuild:

Pipelines/asa-release.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ resources:
66
repositories:
77
- repository: templates
88
type: git
9-
name: Data/OSS-Tools-Pipeline-Templates
9+
name: General/OSS-Tools-Pipeline-Templates
1010
ref: refs/tags/v2.0.4
1111
- repository: 1esPipelines
1212
type: git
@@ -45,7 +45,7 @@ extends:
4545
dotnetTestArgs: '--filter TestCategory=PipelineSafeTests'
4646
includeNuGetOrg: false
4747
nugetFeedsToUse: 'config'
48-
nugetConfigPath: 'NuGet.Config.AzureArtifacts.Release'
48+
nugetConfigPath: 'nuget.config'
4949
onInit:
5050
- task: NuGetAuthenticate@1
5151

@@ -63,7 +63,7 @@ extends:
6363
artifactName: 'linux-mac-archive'
6464
includeNuGetOrg: false
6565
nugetFeedsToUse: 'config'
66-
nugetConfigPath: 'NuGet.Config.AzureArtifacts.Release'
66+
nugetConfigPath: 'nuget.config'
6767
onInit:
6868
- task: NuGetAuthenticate@1
6969
preBuild:
@@ -78,7 +78,7 @@ extends:
7878
artifactName: 'cli-archive'
7979
includeNuGetOrg: false
8080
nugetFeedsToUse: 'config'
81-
nugetConfigPath: 'NuGet.Config.AzureArtifacts.Release'
81+
nugetConfigPath: 'nuget.config'
8282
onInit:
8383
- task: NuGetAuthenticate@1
8484
preBuild:
@@ -93,7 +93,7 @@ extends:
9393
artifactName: 'nuget-lib-archive'
9494
includeNuGetOrg: false
9595
nugetFeedsToUse: 'config'
96-
nugetConfigPath: 'NuGet.Config.AzureArtifacts.Release'
96+
nugetConfigPath: 'nuget.config'
9797
onInit:
9898
- task: NuGetAuthenticate@1
9999
preBuild:
@@ -108,7 +108,7 @@ extends:
108108
artifactName: 'nuget-cli-archive'
109109
includeNuGetOrg: false
110110
nugetFeedsToUse: 'config'
111-
nugetConfigPath: 'NuGet.Config.AzureArtifacts.Release'
111+
nugetConfigPath: 'nuget.config'
112112
onInit:
113113
- task: NuGetAuthenticate@1
114114
preBuild:
@@ -135,6 +135,7 @@ extends:
135135
publishPackageMetadata: true
136136
publishFeedCredentials: 'sdl-oss-nuget-publish'
137137
steps:
138+
- task: NuGetAuthenticate@1
138139
- template: nbgv-set-version-steps.yml@templates
139140
# set-version-steps only sets it for current job, while adding isOutput only sets it for future jobs
140141
# https://learn.microsoft.com/en-us/azure/devops/pipelines/process/set-variables-scripts?view=azure-devops&tabs=powershell#set-an-output-variable-for-use-in-future-jobs

nuget.config

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<clear />
5+
<add key="PublicRegistriesFeed" value="https://pkgs.dev.azure.com/microsoft-sdl/General/_packaging/PublicRegistriesFeed/nuget/v3/index.json" />
6+
</packageSources>
7+
</configuration>

0 commit comments

Comments
 (0)