Cherry-Pick DYN-5791 Applying Renaming Tool (#14844) #2840
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
# Build Dynamo using latest VS and DotNET and perform a Bin Diff | |
name: Dynamo-BinDiff | |
on: pull_request | |
jobs: | |
build-dotnet-windows-current: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Dynamo Repo | |
uses: actions/checkout@v4 | |
with: | |
path: net60_Win_Dynamo | |
repository: DynamoDS/Dynamo | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Disable problem matcher | |
run: echo "::remove-matcher owner=csc::" | |
- name: Install dependencies for windows runtime | |
run: | | |
dotnet restore $Env:GITHUB_WORKSPACE\net60_Win_Dynamo\src\Dynamo.All.sln /p:Configuration=Release --runtime=win-x64 | |
- name: Build Dynamo current branch with MSBuild for NET60-Windows | |
run: | | |
echo "***Continue with the build, Good luck developer!***" | |
cd "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\" | |
.\MSBuild.exe $Env:GITHUB_WORKSPACE\net60_Win_Dynamo\src\Dynamo.All.sln /p:Configuration=Release | |
- name: Navigate to Dynamo DotNet6 Windows Folder | |
run: | | |
cd "$Env:GITHUB_WORKSPACE\net60_Win_Dynamo\bin\AnyCPU\Release" | |
echo "***Locating DynamoCLI for Windows!***" | |
test ".\DynamoSandbox.exe" && echo "DynamoSandbox exists!" | |
- name: Cache Current NET6 Windows Build | |
uses: actions/cache/save@v3 | |
with: | |
path: | | |
${{ github.workspace }}\net60_Win_Dynamo\bin\AnyCPU\Release | |
${{ github.workspace }}\net60_Win_Dynamo\.github\scripts | |
key: ${{ github.run_id }}-${{ github.run_attempt }}-cache-net60Win-current | |
build-dotnet-windows-master: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Dynamo Repo | |
uses: actions/checkout@v4 | |
with: | |
ref: master | |
path: master_net60_Win_Dynamo | |
repository: DynamoDS/Dynamo | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Disable problem matcher | |
run: echo "::remove-matcher owner=csc::" | |
- name: Install dependencies for windows runtime | |
run: | | |
dotnet restore $Env:GITHUB_WORKSPACE\master_net60_Win_Dynamo\src\Dynamo.All.sln /p:Configuration=Release --runtime=win-x64 | |
- name: Build Dynamo master branch with MSBuild for NET60-Windows | |
run: | | |
echo "***Continue with the build, Good luck developer!***" | |
cd "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\" | |
.\MSBuild.exe $Env:GITHUB_WORKSPACE\master_net60_Win_Dynamo\src\Dynamo.All.sln /p:Configuration=Release | |
- name: Navigate to Dynamo DotNet6 Windows Folder | |
run: | | |
cd "$Env:GITHUB_WORKSPACE\master_net60_Win_Dynamo\bin\AnyCPU\Release" | |
echo "***Locating DynamoCLI for Windows!***" | |
test ".\DynamoCLI.exe" && echo "DynamoCLI exists!" | |
- name: Cache Current NET6 Windows Build | |
uses: actions/cache/save@v3 | |
with: | |
path: ${{ github.workspace }}\master_net60_Win_Dynamo\bin\AnyCPU\Release | |
key: ${{ github.run_id }}-${{ github.run_attempt }}-cache-net60Win-master | |
run-bin-diff-net60-windows: | |
needs: [build-dotnet-windows-current, build-dotnet-windows-master] | |
runs-on: windows-latest | |
steps: | |
- name: Restore Current Net60 Windows Build | |
uses: actions/cache/restore@v3 | |
with: | |
fail-on-cache-miss: true | |
path: | | |
${{ github.workspace }}\net60_Win_Dynamo\bin\AnyCPU\Release | |
${{ github.workspace }}\net60_Win_Dynamo\.github\scripts | |
key: ${{ github.run_id }}-${{ github.run_attempt }}-cache-net60Win-current | |
- name: Restore Master Net60 Windows Build | |
uses: actions/cache/restore@v3 | |
with: | |
fail-on-cache-miss: true | |
path: ${{ github.workspace }}\master_net60_Win_Dynamo\bin\AnyCPU\Release | |
key: ${{ github.run_id }}-${{ github.run_attempt }}-cache-net60Win-master | |
- name: Run Binary Diff Job | |
id: Diff2 | |
run: | | |
echo "***Running the binary diff job between the current branch and the master branch of NET60-Windows Config!***" | |
cd "$Env:GITHUB_WORKSPACE\net60_Win_Dynamo\.github\scripts" | |
.\bin_diff.ps1 $Env:GITHUB_WORKSPACE\master_net60_Win_Dynamo\bin\AnyCPU\Release,$Env:GITHUB_WORKSPACE\net60_Win_Dynamo\bin\AnyCPU\Release -src ${{ github.job }} | |
echo "Diff2=$(cat ./result.txt)" >> $Env:GITHUB_OUTPUT | |
outputs: | |
Diff2: ${{ steps.Diff2.outputs.Diff2 }} | |
save-PR-Data: | |
needs: [run-bin-diff-net60-windows] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Save PR Data | |
run: | | |
mkdir -p ./pr | |
echo ${{ github.event.number }} > ./pr/NR | |
echo ${{ github.run_id }}-${{ github.run_attempt }} > ./pr/WN | |
echo "${{ needs.run-bin-diff-net60-windows.outputs.Diff2 }}" > ./pr/Diff2 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: pr | |
path: pr/ |