Skip to content

Commit ded80f0

Browse files
jonthyselldannyvv
andauthored
[0.74] Backport certificate fixes to unblock CI (#14059)
## Description This PR cherry-picks the following certificate-related commits to unblock CI in 0.74: 3a5ca66 3534af4 5fad854 --------- Co-authored-by: Danny van Velzen 🁴 <[email protected]>
1 parent 44bc602 commit ded80f0

7 files changed

+29
-24
lines changed

.ado/jobs/e2e-test.yml

-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ jobs:
8383
- template: ../templates/run-windows-with-certificates.yml
8484
parameters:
8585
buildEnvironment: ${{ parameters.BuildEnvironment }}
86-
certificateName: reactUWPTestAppEncodedKey
8786
buildConfiguration: Release
8887
buildPlatform: ${{ matrix.BuildPlatform }}
8988
buildLogDirectory: $(BuildLogDirectory)
@@ -191,7 +190,6 @@ jobs:
191190
- template: ../templates/run-windows-with-certificates.yml
192191
parameters:
193192
buildEnvironment: ${{ parameters.BuildEnvironment }}
194-
certificateName: reactUWPTestAppEncodedKey
195193
buildConfiguration: Release
196194
buildPlatform: ${{ matrix.BuildPlatform }}
197195
buildLogDirectory: $(BuildLogDirectory)

.ado/jobs/playground.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ parameters:
88
- Continuous
99
- name: AgentPool
1010
type: object
11+
- name: certificatePassword
12+
type: string
13+
default: 'pwd'
1114
- name: buildMatrix
1215
type: object
1316
default:
@@ -135,8 +138,8 @@ jobs:
135138
- ${{if eq(config.BuildEnvironment, 'Continuous')}}:
136139
- template: ../templates/write-certificate.yml
137140
parameters:
138-
certificateName: playgroundEncodedKey
139-
141+
certificatePassword: ${{ parameters.certificatePassword }}
142+
140143
- ${{ if eq(matrix.UseExperimentalWinUI3, true) }}:
141144
- template: ../templates/set-experimental-feature.yml
142145
parameters:
@@ -175,6 +178,7 @@ jobs:
175178
${{if eq(config.BuildEnvironment, 'Continuous')}}:
176179
msbuildArgs:
177180
/p:PackageCertificateKeyFile=$(Build.SourcesDirectory)\EncodedKey.pfx
181+
/p:PackageCertificatePassword=${{ parameters.certificatePassword }}
178182

179183
- ${{if and(endsWith(matrix.Name, 'Universal'), eq(matrix.BuildConfiguration, 'Debug')) }}:
180184
# Execute debug feature tests (skip this step for the Win32 Playground app and for release builds)

.ado/jobs/sample-apps.yml

-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ jobs:
9494
- template: ../templates/run-windows-with-certificates.yml
9595
parameters:
9696
buildEnvironment: ${{ parameters.BuildEnvironment }}
97-
certificateName: sampleAppCPPEncodedKey
9897
buildConfiguration: ${{ matrix.BuildConfiguration }}
9998
buildPlatform: ${{ matrix.BuildPlatform }}
10099
deployOption: ${{ matrix.DeployOption }}

.ado/templates/react-native-init-windows.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ steps:
6262
workingDirectory: $(Agent.BuildDirectory)
6363
6464
- ${{ if and(endsWith(parameters.template, '-lib'), not(startsWith(parameters.template, 'old'))) }}:
65-
- script: |
66-
npx --yes create-react-native-library@latest --slug testcli --description testcli --author-name "React-Native-Windows Bot" --author-email [email protected] --author-url http://example.com --repo-url http://example.com --languages kotlin-objc --type module-new --react-native-version $(reactNativeDevDependency) --example vanilla testcli
65+
- script: | # Force version 0.42.1, version 0.42.2 is broken, see https://github.com/callstack/react-native-builder-bob/issues/674
66+
npx --yes create-react-native-library@0.42.1 --slug testcli --description testcli --author-name "React-Native-Windows Bot" --author-email [email protected] --author-url http://example.com --repo-url http://example.com --languages kotlin-objc --type module-new --react-native-version $(reactNativeDevDependency) --example vanilla testcli
6767
displayName: Init new lib project with create-react-native-library
6868
workingDirectory: $(Agent.BuildDirectory)
6969
@@ -177,7 +177,6 @@ steps:
177177
- template: ../templates/run-windows-with-certificates.yml
178178
parameters:
179179
buildEnvironment: ${{ parameters.BuildEnvironment }}
180-
certificateName: RNWEncodedKey
181180
buildConfiguration: ${{ parameters.configuration }}
182181
buildPlatform: ${{ parameters.platform }}
183182
deployOption: ${{ parameters.additionalRunArguments }}
@@ -224,4 +223,4 @@ steps:
224223
inputs:
225224
pathtoPublish: '$(Build.StagingDirectory)/Tracing'
226225
artifactName: 'Traces - $(Agent.JobName)-$(System.JobAttempt)'
227-
condition: succeededOrFailed()
226+
condition: succeededOrFailed()

.ado/templates/react-native-init.yml

-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,6 @@ steps:
161161
- template: ../templates/run-windows-with-certificates.yml
162162
parameters:
163163
buildEnvironment: ${{ parameters.BuildEnvironment }}
164-
certificateName: RNWEncodedKey
165164
buildConfiguration: ${{ parameters.configuration }}
166165
buildPlatform: ${{ parameters.platform }}
167166
deployOption: ${{ parameters.additionalRunArguments }}

.ado/templates/run-windows-with-certificates.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ parameters:
66
- PullRequest
77
- SecurePullRequest
88
- Continuous
9-
- name: certificateName
10-
type: string
119
- name: buildConfiguration
1210
type: string
1311
values:
@@ -31,7 +29,10 @@ parameters:
3129
- name: moreMSBuildProps
3230
type: string
3331
default: ''
34-
32+
- name: certificatePassword
33+
type: string
34+
default: 'pwd'
35+
3536
steps:
3637
- ${{ if eq(parameters.buildConfiguration, 'Debug') }}:
3738
- script: >
@@ -61,7 +62,7 @@ steps:
6162
- ${{ if and(eq(parameters.buildConfiguration, 'Release'), eq(parameters.buildEnvironment, 'Continuous')) }}:
6263
- template: ../templates/write-certificate.yml
6364
parameters:
64-
certificateName: ${{ parameters.certificateName }}
65+
certificatePassword: ${{ parameters.certificatePassword }}
6566

6667
- script: >
6768
yarn react-native run-windows
@@ -70,7 +71,7 @@ steps:
7071
--no-launch
7172
--logging
7273
--buildLogDirectory ${{ parameters.buildLogDirectory }}
73-
--msbuildprops RestoreLockedMode=${{ parameters.restoreLockedMode }},RestoreForceEvaluate=${{ parameters.restoreForceEvaluate }},PackageCertificateKeyFile=$(Build.SourcesDirectory)\EncodedKey.pfx${{ parameters.moreMSBuildProps }}
74+
--msbuildprops RestoreLockedMode=${{ parameters.restoreLockedMode }},RestoreForceEvaluate=${{ parameters.restoreForceEvaluate }},PackageCertificateKeyFile=$(Build.SourcesDirectory)\EncodedKey.pfx,PackageCertificatePassword=${{ parameters.certificatePassword }}${{ parameters.moreMSBuildProps }}
7475
${{ parameters.deployOption }}
7576
displayName: run-windows (Release) - CI
7677
workingDirectory: ${{ parameters.workingDirectory }}

.ado/templates/write-certificate.yml

+14-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
parameters:
2-
- name: certificateName
2+
- name: certificatePassword
33
type: string
4+
default: 'pwd'
45

56
steps:
67
- powershell: |
7-
Write-Host "Using certificate named ${{ parameters.certificateName }}"
8-
Write-Host "##vso[task.setvariable variable=EncodedKey]$(${{ parameters.certificateName }})"
9-
displayName: Determining certificate
8+
$certStoreRoot="cert:\CurrentUser\My"
9+
$rootFolder="$(Build.SourcesDirectory)"
1010
11-
- powershell: |
12-
$PfxBytes = [System.Convert]::FromBase64String("$(EncodedKey)")
13-
$PfxPath = [System.IO.Path]::GetFullPath( (Join-Path -Path $(Build.SourcesDirectory) -ChildPath EncodedKey.pfx) )
14-
[System.IO.File]::WriteAllBytes("$PfxPath", $PfxBytes)
15-
displayName: Write certificate
11+
# the following two lines must match
12+
[System.Security.SecureString] $password = ConvertTo-SecureString -String "${{ parameters.certificatePassword }}" -Force -AsPlainText
13+
14+
$cert = New-SelfSignedCertificate -KeyExportPolicy Exportable -CertStoreLocation $certStoreRoot -DnsName "Development Root CA" -NotAfter (Get-Date).AddYears(5) -Type CodeSigningCert -KeyUsage DigitalSignature
15+
[String] $pfxPath = [System.IO.Path]::GetFullPath( (Join-Path -Path $rootFolder -ChildPath EncodedKey.pfx) )
16+
[String] $certPath = "$certStoreRoot\$($cert.Thumbprint)"
17+
18+
Export-PfxCertificate -Cert $certPath -FilePath $pfxPath -Password $password
19+
20+
displayName: Create self-signed certificate

0 commit comments

Comments
 (0)