DYN-6313 Update NodeAutoComplete ML TOU blog hyperlink #241
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 DynamoCore.sln with .NET 6.0 on linux | |
name: Build DynamoCore.sln net6.0 linux | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Dynamo Repo | |
uses: actions/checkout@v4 | |
with: | |
path: Dynamo | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
- name: Disable problem matcher | |
run: echo "::remove-matcher owner=csc::" | |
- name: Install dependencies for linux runtime | |
run: dotnet restore ${{ github.workspace }}/Dynamo/src/DynamoCore.sln -p:Platform=NET60_Linux --runtime=linux-x64 | |
- name: Build Dynamo with MSBuild for Linux | |
run: | | |
echo "***Continue with the build, Good luck developer!***" | |
dotnet build ${{ github.workspace }}/Dynamo/src/DynamoCore.sln -c Release /p:Platform=NET60_Linux | |
- name: Look for DynamoCLI.exe | |
run: | | |
cd "${{ github.workspace }}/Dynamo/bin/NET60_Linux/Release" | |
echo "***Locating DynamoCLI for Linux!***" | |
test "./DynamoCLI.exe" && echo "DynamoCLI exists!" | |
- name: Run smoke tests | |
run: | | |
cd "${{ github.workspace }}/Dynamo/bin/NET60_Linux/Release" | |
echo "***Running Smoke tests on linux***" | |
#TODO unfortunately dotnet does not find any tests in this assembly. | |
#dotnet test DynamoCoreTests.dll --filter "TestCategory~UnitTest" |