-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Reenable framework unit tests on helix #19975
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
8b2bd91
See if framework tests work now
HaoK aac0214
Fix sharedfx root for helix runs
HaoK dc1a955
Look for targeting pack in right place
HaoK 34802dc
Add TestDependsOnAspnetRef logic
HaoK 9b50e8f
Install ref package
HaoK e5a9039
Update Helix.targets
HaoK 3b7fa9a
Update SharedFxTests.cs
HaoK 2441b7a
Set ASPNET_RUNTIME_PATH for helix
HaoK 487b468
Update TestRunner.cs
HaoK 7514a3a
Update TestRunner.cs
HaoK 1ace386
Update TestRunner.cs
HaoK 9f448ea
Update ci.yml
HaoK 26e1bd0
Update ci.yml
HaoK 332b811
Dump shared app directory contents
HaoK 1e87c08
Also copy root txt files from shared fx
HaoK 7db26af
Update installappruntime.sh
HaoK bc6c0f7
Update Microsoft.AspNetCore.App.UnitTests.csproj
HaoK 065a936
Update SharedFxTests.cs
HaoK 1914679
Don't try to copy ref pack if its not building
HaoK File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<# | ||
.SYNOPSIS | ||
Unzips an AspNetCore.App.Ref nupkg | ||
.DESCRIPTION | ||
This script unzips an AspNetCore.App.Ref nupkg | ||
.PARAMETER RefPath | ||
The path to the AspNetCore.App.Ref package to install. | ||
.PARAMETER InstallDir | ||
The directory to install to. | ||
#> | ||
param( | ||
[Parameter(Mandatory = $true)] | ||
$RefPath, | ||
|
||
[Parameter(Mandatory = $true)] | ||
$InstallDir | ||
) | ||
|
||
$ErrorActionPreference = 'Stop' | ||
$ProgressPreference = 'SilentlyContinue' # Workaround PowerShell/PowerShell#2138 | ||
|
||
Set-StrictMode -Version 1 | ||
|
||
Write-Host "Extracting to $InstallDir" | ||
|
||
$zipPackage = [io.path]::ChangeExtension($RefPath, ".zip") | ||
Write-Host "Renaming to $zipPackage" | ||
Rename-Item -Path $RefPath -NewName $zipPackage | ||
if (Get-Command -Name 'Microsoft.PowerShell.Archive\Expand-Archive' -ErrorAction Ignore) { | ||
# Use built-in commands where possible as they are cross-plat compatible | ||
Microsoft.PowerShell.Archive\Expand-Archive -Path $zipPackage -DestinationPath "$InstallDir" -Force | ||
} | ||
else { | ||
Remove-Item "$InstallDir" -Recurse -ErrorAction Ignore | ||
# Fallback to old approach for old installations of PowerShell | ||
Add-Type -AssemblyName System.IO.Compression.FileSystem | ||
[System.IO.Compression.ZipFile]::ExtractToDirectory($zipPackage, "$InstallDir") | ||
} | ||
|
||
Get-ChildItem -Path "$InstallDir" -Recurse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Cause the script to fail if any subcommand fails | ||
set -e | ||
|
||
refPath=$1 | ||
output_dir=$2 | ||
tmpDir=./tmpRuntime | ||
|
||
echo "Installing ref package from $refPath" | ||
cp $refPath sharedFx.zip | ||
|
||
mkdir -p $output_dir | ||
echo "Unzip to $output_dir" | ||
unzip sharedFx.zip -d $output_dir |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we migrate these to C#
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah i'll file an issue for this and the other one (shared runtime)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#20624