Set version to 3.2-alpha (#2181) #2910
This file contains 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
name: Build Test | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Check for secrets leak on the repo | |
run: | | |
git clone https://github.com/awslabs/git-secrets.git target | |
cd target | |
./install.ps1 | |
echo "Git-secrets installation completed" | |
git secrets --register-aws --global | |
echo "Added aws secret templates" | |
git secrets --scan -r ../ | |
echo "Repository scan completed" | |
- name: Get Version Info | |
uses: dotnet/nbgv@master | |
with: | |
setAllVars: true | |
- name: Setup .NET Versions | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: | | |
3.1.x | |
5.0.x | |
6.0.x | |
7.0.x | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Configure credentials to default profile | |
env: | |
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_KEY }} | |
run: | | |
mkdir "~\.aws" | |
"[default]" | Out-File -FilePath "~\.aws\credentials" | |
"aws_access_key_id = $env:aws_access_key_id" | Out-File -FilePath "~\.aws\credentials" -Append | |
"aws_secret_access_key = $env:aws_secret_access_key" | Out-File -FilePath "~\.aws\credentials" -Append | |
- name: Test | |
run: dotnet test --configuration Release --no-restore --verbosity normal | |
benchmark-and-regression-check: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET Versions | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 7.0.x | |
- name: Get Version Info | |
uses: dotnet/nbgv@master | |
with: | |
setAllVars: true | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Install .NET Framework 4.7.2 | |
run: | | |
iwr https://go.microsoft.com/fwlink/?linkid=874338 -OutFile installer.exe; | |
Start-Process .\\installer.exe -argumentlist "/passive /norestart" -wait; | |
Write-Host Installed .NET 4.7.2 | |
- name: Download Test Projects | |
run: | | |
if (!(test-path -PathType Container c:\\temp)){ mkdir c:\\temp} | |
iwr https://github.com/marknfawaz/TestProjects/archive/refs/heads/master.zip -OutFile c:\\temp\\master.zip | |
Expand-Archive -Path c:\\temp\\master.zip -DestinationPath c:\\temp\\ | |
mv c:\\temp\\TestProjects-master\\net472\\OwinExtraAPI c:\\temp\\OwinExtraAPI | |
mkdir c:\\temp\\OwinExtraAPI_output | |
mv c:\\temp\\TestProjects-master\\net472\\IonicZipSample c:\\temp\\IonicZipSample | |
mkdir c:\\temp\\IonicZipSample_output | |
Write-Host Final Temp Dir: | |
dir c:\\temp | |
- name: Install Benchmark Tool | |
run: | | |
dotnet new tool-manifest | |
dotnet tool install --add-source ${{ secrets.TUXNET_BENCHMARK_NUGET_FEED }} BenchmarkDotnetCliTool | |
- name: Run Benchmark and check for Regression | |
run: | | |
# baseline is the most recent git tag | |
$baseline="static-baseline" | |
$tag="v${{env.NBGV_MajorMinorVersion}}" | |
$threshold=10 | |
dotnet benchmark run local managed src/PortingAssistant.Client/PortingAssistant.Client.CLI.csproj -o .\benchmark --tag $tag --baseline $baseline --threshold $threshold -c benchmark-targets.json | |
- name: Archive Benchmark results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: benchmark-results | |
path: .\benchmark\* | |
deploy: | |
# after trailing tuxnet benchmark tool, add 'benchmark-and-regression-check' to this array | |
# so deploy will block if perf regression detected. | |
needs: [build] | |
runs-on: windows-latest | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Check for secrets leak on the repo | |
run: | | |
git clone https://github.com/awslabs/git-secrets.git target | |
cd target | |
./install.ps1 | |
echo "Git-secrets installation completed" | |
git secrets --register-aws --global | |
echo "Added aws secret templates" | |
git secrets --scan -r ../ | |
echo "Repository scan completed" | |
- name: Get Version Info | |
uses: dotnet/nbgv@master | |
with: | |
setAllVars: true | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Configure credentials to default profile | |
env: | |
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_KEY }} | |
run: | | |
mkdir "~\.aws" | |
"[default]" | Out-File -FilePath "~\.aws\credentials" | |
"aws_access_key_id = $env:aws_access_key_id" | Out-File -FilePath "~\.aws\credentials" -Append | |
"aws_secret_access_key = $env:aws_secret_access_key" | Out-File -FilePath "~\.aws\credentials" -Append | |
- name: Pack | |
if: ${{ github.event_name == 'push' }} | |
run: | | |
dotnet pack --configuration Release --no-restore -o dist | |
$json = Get-Content src/PortingAssistant.Client/PortingAssistantTelemetryConfig.json | ConvertFrom-Json | |
$json.InvokeUrl = "https://encore-telemetry.us-east-1.amazonaws.com" | |
$json.ServiceName = "encore" | |
$json | ConvertTo-Json | Out-File src/PortingAssistant.Client/PortingAssistantTelemetryConfig.json | |
echo $json | |
dotnet publish src/PortingAssistant.Client/PortingAssistant.Client.CLI.csproj -r win-x64 -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true -p:IncludeSymbolsInSingleFile=false /p:DebugType=None /p:DebugSymbols=false --self-contained false -o dist | |
- name: Install Sleet | |
if: ${{ github.event_name == 'push' }} | |
run: dotnet tool install -g sleet --version 3.2.0 | |
- name: "Configure AWS Credentials" | |
if: ${{ github.event_name == 'push' }} | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }} | |
aws-session-token: ${{ secrets.AWS_SESSION_TOKEN }} | |
aws-region: us-west-2 | |
- name: Publish | |
if: ${{ github.event_name == 'push' }} | |
run: sleet push dist --source s3Feed --verbose | |
- name: Publish CLI Executable | |
if: ${{ github.event_name == 'push' }} | |
run: | | |
Get-ChildItem ./dist/PortingAssistant.Client.CLI.*.nupkg | Foreach-Object { | |
$version = $_.Name -replace 'PortingAssistant.Client.CLI.', '' -replace ‘.nupkg’, ‘’ | |
} | |
$uploadLink = 's3://aws.portingassistant.dotnet.download/nuget/flatcontainer/portingassistant.client.cli/' + $version + '/' | |
Echo $uploadLink | |
aws s3 cp ./dist/PortingAssistant.Client.CLI.exe $uploadLink | |
- name: "Push tag" | |
if: ${{ github.event_name == 'push' }} | |
uses: EndBug/latest-tag@latest | |
with: | |
tag-name: "v${{env.NBGV_MajorMinorVersion}}" |