Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .ado/templates/e2e-test-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,27 @@ jobs:
fetchDepth: 1 # the depth of commits to ask Git to fetch
submodules: false

- task: PowerShell@2
displayName: List disksize after checkout
inputs:
targetType: inline # filePath | inline
script: |
Get-WmiObject Win32_LogicalDisk

- task: PowerShell@2
displayName: Delete Android SDK folder
inputs:
targetType: inline # filePath | inline
script: |
Remove-Item –path "C:\Program Files (x86)\Android\android-sdk" –recurse -force

- task: PowerShell@2
displayName: List disksize after deleting software on C
inputs:
targetType: inline # filePath | inline
script: |
Get-WmiObject Win32_LogicalDisk

- template: prepare-env.yml
parameters:
useRnFork: ${{ parameters.UseRNFork }}
Expand Down
10 changes: 5 additions & 5 deletions .ado/windows-vs-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -582,11 +582,11 @@ jobs:
# workingDirectory: current
# condition: and(succeeded(), or(eq(variables['BuildConfiguration'], 'DebugBundle'), eq(variables['BuildConfiguration'], 'ReleaseBundle')))

# - template: templates/e2e-test-job.yml # Template reference
# parameters:
# name: E2ETest
# BuildPlatform: x64
# UseRNFork: true
- template: templates/e2e-test-job.yml # Template reference
parameters:
name: E2ETest
BuildPlatform: x64
UseRNFork: true

- job: RNWNugetPR
displayName: Build and Pack Nuget
Expand Down