mono_build #511
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
#Builds Dynamo on linux using mono. | |
name: mono_build | |
on: [push, pull_request] | |
jobs: | |
mono_build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: Setup Nuget.exe to use on VM | |
uses: nuget/setup-nuget@v1 | |
with: | |
nuget-version: latest | |
- name: Nuget Restore on DynamoMono solution | |
run: nuget restore $GITHUB_WORKSPACE/src/Dynamo.Mono.sln | |
- name: Build Dynamo with mono msbuild | |
run: | | |
echo "***Continue with the build, Good luck mono developer!***" | |
msbuild $GITHUB_WORKSPACE/src/Dynamo.Mono.sln /p:Configuration=Release /t:Restore | |
msbuild $GITHUB_WORKSPACE/src/Dynamo.Mono.sln /p:Configuration=Release /t:Build | |
# look for Dynamo | |
- name: Navigate to Dynamo Folder | |
run: | | |
cd "$GITHUB_WORKSPACE/bin/AnyCPU/Release" | |
echo "***Locating DynamoCLI!***" | |
mono ./DynamoCLI.exe -h |