mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-21 05:43:10 -07:00
eng: Remove PFXs from codebase (#2219)
* Squashed commit of the following: commit a7d403386e3df430edf67d89ca23f81313022d2d Author: Tian Liao <tilia@microsoft.com> Date: Mon Aug 12 16:58:30 2024 +0800 remove pfx from ignore list commit 26ffa46d9a92dcbadc9d9d471715fdec10c6f013 Author: Tian Liao <tilia@microsoft.com> Date: Mon Aug 12 16:58:07 2024 +0800 Remove PFXs * fix yaml * fix gh action * fix gh action
This commit is contained in:
parent
3782412791
commit
b30ece5c03
11 changed files with 59 additions and 50 deletions
25
.github/workflows/action-ci.yml
vendored
25
.github/workflows/action-ci.yml
vendored
|
@ -91,6 +91,10 @@ jobs:
|
|||
with:
|
||||
name: Build-${{ matrix.platform }}
|
||||
path: ${{ github.workspace }}/output
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Tools-${{ matrix.platform }}
|
||||
path: ${{ github.workspace }}/build/scripts/SignTestApp.ps1
|
||||
|
||||
unitTests:
|
||||
needs: [defineBuilds, build]
|
||||
|
@ -107,10 +111,13 @@ jobs:
|
|||
with:
|
||||
name: Build-${{ matrix.platform }}
|
||||
path: ${{ github.workspace }}/download
|
||||
- uses: actions/download-artifact@v4
|
||||
name: Download tools
|
||||
with:
|
||||
name: Tools-${{ matrix.platform }}
|
||||
path: ${{ github.workspace }}/download/tools
|
||||
- run: |
|
||||
${{ env.testDir }}/Add-AppDevPackage.ps1 `
|
||||
-CertificatePath ${{ env.testDir }}/CalculatorUnitTests.cer `
|
||||
-Force
|
||||
${{ github.workspace }}/download/tools/SignTestApp.ps1 -AppToSign ${{ env.testDir }}/CalculatorUnitTests.msix
|
||||
shell: pwsh
|
||||
name: Install test certificate
|
||||
- uses: ilammy/msvc-dev-cmd@v1 # this is a workaround because microsoft/vstest-action is broken.
|
||||
|
@ -131,16 +138,18 @@ jobs:
|
|||
with:
|
||||
name: Build-x64
|
||||
path: ${{ github.workspace }}/download
|
||||
- uses: actions/download-artifact@v4
|
||||
name: Download tools
|
||||
with:
|
||||
name: Tools-x64
|
||||
path: ${{ github.workspace }}/download/tools
|
||||
- run: |
|
||||
Set-DisplayResolution -Width 1920 -Height 1080 -Force
|
||||
shell: pwsh
|
||||
name: Set screen resolution
|
||||
- run: |
|
||||
${{ env.appDir }}/Add-AppDevPackage.ps1 `
|
||||
-CertificatePath ${{ env.appDir }}/Calculator*.cer `
|
||||
-Force
|
||||
${{ env.appDir }}/Add-AppDevPackage.ps1 `
|
||||
-Force
|
||||
${{ github.workspace }}/download/tools/SignTestApp.ps1 -AppToSign '${{ env.appDir }}/Calculator_*.msixbundle'
|
||||
${{ env.appDir }}/Add-AppDevPackage.ps1 -Force
|
||||
shell: powershell
|
||||
name: Install app
|
||||
- run: |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue