DYN-6535 DynamoRevit Improve Search Fix 2 #827
Workflow file for this run
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 DynamoAll.sln with .NET 6.0 | |
name: Build DynamoAll.sln net6.0 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Dynamo Repo | |
uses: actions/checkout@v4 | |
with: | |
path: Dynamo | |
repository: DynamoDS/Dynamo | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Disable problem matcher | |
run: Write-Output "::remove-matcher owner=csc::" | |
- name: Setup msbuild | |
uses: microsoft/setup-msbuild@v1.3 | |
- name: Install dependencies for windows runtime | |
run: | | |
dotnet restore ${{ github.workspace }}\Dynamo\src\Dynamo.All.sln /p:Configuration=Release --runtime=win-x64 -p:DotNet=net6.0 | |
- name: Build Dynamo with MSBuild for Windows | |
run: | | |
Write-Output "***Continue with the build, Good luck developer!***" | |
msbuild ${{ github.workspace }}\Dynamo\src\Dynamo.All.sln /p:Configuration=Release /p:DotNet=net6.0 | |
- name: Look for DynamoCLI.exe | |
run: | | |
Write-Output "***Locating DynamoCLI.exe!***" | |
if (Test-Path -Path "${{ github.workspace }}\Dynamo\bin\AnyCPU\Release\DynamoCLI.exe") { | |
Write-Output "DynamoCLI.exe exists!" | |
} else { | |
Write-Error "DynamoCLI.exe was not found!" | |
} |