зеркало из https://github.com/dotnet/infer.git
19 строки
702 B
YAML
19 строки
702 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 Framework platform
|
|
|
|
parameters:
|
|
Configuration: 'ReleaseFull'
|
|
|
|
steps:
|
|
- task: Bash@3
|
|
displayName: 'Running Evaluator'
|
|
condition: not(endsWith('${{ parameters.Configuration }}', 'Core'))
|
|
inputs:
|
|
targetType: 'inline'
|
|
script: ./Evaluator.exe InferNetRunsOnly.xml
|
|
workingDirectory: ${{ format('src/Learners/Runners/Evaluator/bin/{0}/net461', parameters.Configuration) }}
|
|
displayName: Running Evaluator
|
|
continueOnError: true |