Skip to content

Commit 01b7b3a

Browse files
committed
conflicts
1 parent 3069fcb commit 01b7b3a

3 files changed

Lines changed: 0 additions & 68 deletions

File tree

CONTRIBUTING.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ instructions provided by the bot. You will only need to do this once across all
1111

1212
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
1313
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
14-
<<<<<<< HEAD
1514
or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
1615

1716
## Before Contributing
@@ -41,6 +40,4 @@ All pull requests must include:
4140
- **Issue/Work Item Link** (only one required):
4241
- External contributors: Link to a GitHub issue
4342
- Microsoft org members: Link to an ADO work item
44-
=======
4543
or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
46-
>>>>>>> 06397346bcf475452f4047122b3367d63fbebecd

eng/pipelines/build-whl-pipeline.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -157,13 +157,8 @@ jobs:
157157
# Copy the built .pdb files to staging folder for artifacts
158158
- task: CopyFiles@2
159159
inputs:
160-
<<<<<<< HEAD
161160
SourceFolder: '$(Build.SourcesDirectory)\mssql_python'
162161
Contents: 'ddbc_bindings.cp$(shortPyVer)-*.pdb'
163-
=======
164-
SourceFolder: '$(Build.SourcesDirectory)\mssql_python\pybind\build\$(targetArch)\py$(shortPyVer)\Release'
165-
Contents: 'ddbc_bindings.cp$(shortPyVer)-*.pdbs'
166-
>>>>>>> 06397346bcf475452f4047122b3367d63fbebecd
167162
TargetFolder: '$(Build.ArtifactStagingDirectory)\all-pdbs'
168163
displayName: 'Place PDB file into artifacts directory'
169164

@@ -192,7 +187,6 @@ jobs:
192187
publishLocation: 'Container'
193188
displayName: 'Publish all PYDs as artifacts'
194189

195-
<<<<<<< HEAD
196190
# Publish the collected .pdb file(s) as build artifacts
197191
- task: PublishBuildArtifacts@1
198192
condition: succeededOrFailed()
@@ -202,8 +196,6 @@ jobs:
202196
publishLocation: 'Container'
203197
displayName: 'Publish all PDBs as build artifacts'
204198

205-
=======
206-
>>>>>>> 06397346bcf475452f4047122b3367d63fbebecd
207199
# Publish the python arm64 libraries as build artifacts for next builds if ARM64
208200
# We publish them only for ARM64 builds since we cannot install arm64 Python on x64 host
209201
# This allows us to reuse the libraries in future ARM64 builds
@@ -215,11 +207,7 @@ jobs:
215207
ArtifactName: 'mssql-python-arm64-libs'
216208
publishLocation: 'Container'
217209
displayName: 'Publish arm64 libs as artifacts'
218-
<<<<<<< HEAD
219210

220-
=======
221-
222-
>>>>>>> 06397346bcf475452f4047122b3367d63fbebecd
223211
# Publish the collected wheel file(s) as build artifacts
224212
- task: PublishBuildArtifacts@1
225213
condition: succeededOrFailed()

eng/pipelines/dummy-release-pipeline.yml

Lines changed: 0 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
1-
<<<<<<< HEAD
21
trigger: none
32

43
name: mssql-python-dummy-release-pipeline
5-
=======
6-
name: mssql-python-official-release-pipeline
7-
>>>>>>> 06397346bcf475452f4047122b3367d63fbebecd
84

95
variables:
106
- group: 'ESRP Federated Creds (AME)'
117

12-
<<<<<<< HEAD
138
extends:
149
template: v2/OneBranch.Official.CrossPlat.yml@templates
1510
parameters:
@@ -195,51 +190,3 @@ extends:
195190
# ServiceEndpointUrl: 'https://api.esrp.microsoft.com'
196191
# MainPublisher: 'ESRPRELPACMAN'
197192
# DomainTenantId: '$(DomainTenantId)'
198-
=======
199-
jobs:
200-
- job: ReleaseESRPPackage
201-
displayName: 'Release ESRP Package'
202-
pool:
203-
vmImage: 'windows-latest'
204-
205-
steps:
206-
- task: DownloadPipelineArtifact@2
207-
inputs:
208-
buildType: 'specific'
209-
project: '$(System.TeamProject)'
210-
definition: 2162
211-
buildVersionToDownload: 'latest'
212-
branchName: '$(Build.SourceBranch)'
213-
artifactName: 'mssql-python-wheels-dist'
214-
targetPath: '$(Build.SourcesDirectory)\dist'
215-
displayName: 'Download release wheel files artifact from latest successful run on main branch'
216-
217-
# Show content of the downloaded artifact
218-
- script: |
219-
echo "Contents of the dist directory:"
220-
dir "$(Build.SourcesDirectory)\dist"
221-
displayName: 'List contents of dist directory'
222-
223-
- task: EsrpRelease@9
224-
displayName: 'ESRP Release'
225-
inputs:
226-
connectedservicename: '$(ESRPConnectedServiceName)'
227-
usemanagedidentity: true
228-
keyvaultname: '$(AuthAKVName)'
229-
signcertname: '$(AuthSignCertName)'
230-
clientid: '$(EsrpClientId)'
231-
Intent: 'PackageDistribution'
232-
# Changing content type to Maven release (NOT PyPI) since we want to do dummy release
233-
# for ESRP testing purposes, not for actual PyPI distribution.
234-
# This is a workaround to allow ESRP to process the release without actual PyPI content
235-
# and to avoid ESRP validation errors.
236-
ContentType: 'Maven'
237-
ContentSource: 'Folder'
238-
FolderLocation: '$(Build.SourcesDirectory)/dist'
239-
WaitForReleaseCompletion: true
240-
Owners: '$(owner)'
241-
Approvers: '$(approver)'
242-
ServiceEndpointUrl: 'https://api.esrp.microsoft.com'
243-
MainPublisher: 'ESRPRELPACMAN'
244-
DomainTenantId: '$(DomainTenantId)'
245-
>>>>>>> 06397346bcf475452f4047122b3367d63fbebecd

0 commit comments

Comments
 (0)