Temporarily disable transformers tool test (#8360)

This commit is contained in:
Changming Sun 2021-07-12 20:31:22 -07:00 committed by GitHub
parent 0a5b75f5cd
commit 530d7bb46d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,7 @@ jobs:
--build_shared_lib \
--parallel \
--build_wheel \
--enable_onnx_tests --enable_transformers_tool_test\
--enable_onnx_tests \
--build_java --build_nodejs --update --build
workingDirectory: $(Build.SourcesDirectory)
@ -73,7 +73,7 @@ jobs:
inputs:
script: |
cd /tmp
python3 $(Build.SourcesDirectory)/tools/ci_build/build.py --build_dir $(Build.BinariesDirectory) --cmake_generator Ninja --config Release --test --skip_submodule_sync --build_shared_lib --parallel --build_wheel --enable_onnx_tests --enable_transformers_tool_test --build_nodejs --ctest_path ""
python3 $(Build.SourcesDirectory)/tools/ci_build/build.py --build_dir $(Build.BinariesDirectory) --cmake_generator Ninja --config Release --test --skip_submodule_sync --build_shared_lib --parallel --build_wheel --enable_onnx_tests --build_nodejs --ctest_path ""
- task: CmdLine@2
displayName: 'Install Debug python package'
@ -87,7 +87,7 @@ jobs:
displayName: 'Run Debug unit tests'
inputs:
scriptPath: $(Build.SourcesDirectory)/tools/ci_build/build.py
arguments: --build_dir $(Build.BinariesDirectory) --cmake_generator Ninja --config Debug --test --skip_submodule_sync --build_shared_lib --parallel --build_wheel --enable_onnx_tests --enable_transformers_tool_test --build_nodejs --ctest_path ""
arguments: --build_dir $(Build.BinariesDirectory) --cmake_generator Ninja --config Debug --test --skip_submodule_sync --build_shared_lib --parallel --build_wheel --enable_onnx_tests --build_nodejs --ctest_path ""
workingDirectory: /tmp
- task: CmdLine@2