Skip to content

Commit 0474dad

Browse files
authored
Repositories passed through to SDLStage (#2059)
* pass repositories that are specific to each service through to the SDLStage SourceRepositoriesToScan
1 parent e2f1b47 commit 0474dad

File tree

8 files changed

+21
-8
lines changed

8 files changed

+21
-8
lines changed

eng/pipelines/templates/stages/archetype-sdk-client.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ parameters:
1414
- name: Artifacts
1515
type: object
1616
default: []
17+
- name: SDLStageRepositoriesToScan
18+
type: object
19+
default: []
1720

1821
extends:
1922
${{ if eq(variables['System.TeamProject'], 'internal') }}:
@@ -46,8 +49,8 @@ extends:
4649
credscan:
4750
toolVersion: 2.3.12.23
4851
sourceRepositoriesToScan:
49-
exclude:
50-
- repository: SwiftPM-AzureTemplate
52+
include:
53+
- ${{ parameters.SDLStageRepositoriesToScan}}
5154

5255
stages:
5356
- stage: Build

sdk/communication/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,6 @@ extends:
4242
- name: AzureCommunicationChat
4343
- name: AzureCommunicationCalling
4444
skipSwiftPackageManager: true
45+
SDLStageRepositoriesToScan:
46+
- repository: SwiftPM-AzureCommunicationCommon
47+
- repository: SwiftPM-AzureCommunicationChat

sdk/core/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,5 @@ extends:
3535
ServiceDirectory: core
3636
Artifacts:
3737
- name: AzureCore
38+
SDLStageRepositoriesToScan:
39+
- repository: SwiftPM-AzureCore

sdk/template/AzureTemplate/AzureTemplate.podspec.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "AzureTemplate",
3-
"version": "1.7.0-beta.3",
3+
"version": "1.7.0-beta.4",
44
"summary": "Azure Template Dummy Library",
55
"description": "This is a test library for Azure Engineering Systems.",
66
"homepage": "https://github.com/Azure/azure-sdk-for-ios/tree/main/sdk/template/AzureTemplate",
@@ -19,7 +19,7 @@
1919
"changelog": "https://github.com/Azure/azure-sdk-for-ios/blob/main/sdk/template/AzureTemplate/CHANGELOG.md",
2020
"source": {
2121
"git": "https://github.com/Azure/azure-sdk-for-ios.git",
22-
"tag": "AzureTemplate_1.7.0-beta.3"
22+
"tag": "AzureTemplate_1.7.0-beta.4"
2323
},
2424
"source_files": "sdk/template/AzureTemplate/Source/**/*.{swift,h,m}",
2525
"pod_target_xcconfig": {

sdk/template/AzureTemplate/AzureTemplate.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@
368368
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
369369
LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx";
370370
MACOSX_DEPLOYMENT_TARGET = 10.15;
371-
MARKETING_VERSION = 1.7.0-beta.3;
371+
MARKETING_VERSION = 1.7.0-beta.4;
372372
OTHER_CFLAGS = "$(inherited)";
373373
OTHER_LDFLAGS = "$(inherited)";
374374
OTHER_SWIFT_FLAGS = "$(inherited)";
@@ -399,7 +399,7 @@
399399
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
400400
LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx";
401401
MACOSX_DEPLOYMENT_TARGET = 10.15;
402-
MARKETING_VERSION = 1.7.0-beta.3;
402+
MARKETING_VERSION = 1.7.0-beta.4;
403403
OTHER_CFLAGS = "$(inherited)";
404404
OTHER_LDFLAGS = "$(inherited)";
405405
OTHER_SWIFT_FLAGS = "$(inherited)";

sdk/template/AzureTemplate/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release History
22

3+
# 1.7.0-beta.4 (2025-03-19)
4+
Azure Template release for Engineering System testing.
5+
36
# 1.7.0-beta.3 (2025-03-12)
47
Azure Template release for Engineering System testing.
58

sdk/template/AzureTemplate/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ specifying the clone URL of this repository and the version specifier you wish t
4848
// swift-tools-version:5.3
4949
dependencies: [
5050
...
51-
.package(name: "AzureTemplate", url: "https://github.com/Azure/SwiftPM-AzureTemplate.git", from: "1.7.0-beta.3")
51+
.package(name: "AzureTemplate", url: "https://github.com/Azure/SwiftPM-AzureTemplate.git", from: "1.7.0-beta.4")
5252
],
5353
```
5454

@@ -86,7 +86,7 @@ platform :ios, '12.0'
8686
use_frameworks!
8787

8888
target 'MyTarget' do
89-
pod 'AzureTemplate', '1.7.0-beta.3'
89+
pod 'AzureTemplate', '1.7.0-beta.4'
9090
...
9191
end
9292
```

sdk/template/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,5 @@ extends:
3535
ServiceDirectory: template
3636
Artifacts:
3737
- name: AzureTemplate
38+
SDLStageRepositoriesToScan:
39+
- repository: SwiftPM-AzureTemplate

0 commit comments

Comments
 (0)