Update LIBG 229 to 3.0.0.3331 #146
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 Dynamo using latest VS and DotNET | |
name: Dynamo-net6.0-linux-Build | |
on: [push,pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Dynamo Repo | |
uses: actions/checkout@v2 | |
with: | |
path: Dynamo | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v3 | |
- name: Disable problem matcher | |
run: echo "::remove-matcher owner=csc::" | |
- name: Install dependencies for linux runtime | |
run: dotnet restore ${{ github.workspace }}/Dynamo/src/DynamoCore.net6.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.net6.sln -c Release /p:Platform=NET60_Linux | |
- name: Navigate to Dynamo Linux Folder | |
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" |