infer/build/evaluator-netcore.yml

19 строки
709 B
YAML

# Licensed to the .NET Foundation under one or more agreements.
# The .NET Foundation licenses this file to you under the MIT license.
# See the LICENSE file in the project root for more information.
# Template for running Evaluator (~30 minutes) on .NET Core platform
parameters:
Configuration: 'ReleaseCore'
steps:
- task: Bash@3
displayName: 'Running Evaluator'
condition: not(endsWith('${{ parameters.Configuration }}', 'Full'))
inputs:
targetType: 'inline'
script: dotnet Evaluator.dll InferNetRunsOnly.xml
workingDirectory: ${{ format('src/Learners/Runners/Evaluator/bin/{0}/netcoreapp2.1', parameters.Configuration) }}
displayName: Running Evaluator
continueOnError: true