mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-29 03:30:52 +00:00
Delete linux-ort-srv-ci-pipeline.yml (#8628)
This commit is contained in:
parent
24b14c650b
commit
0458821944
2 changed files with 28 additions and 33 deletions
|
|
@ -121,6 +121,34 @@ TEST_P(ModelTest, Run) {
|
|||
{"training_dropout_default", "result differs", {}}, // Temporary, subsequent PR will remove this.
|
||||
{"training_dropout_default_mask", "result differs", {}}, // Temporary, subsequent PR will remove this.
|
||||
{"training_dropout_mask", "result differs", {}}, // Temporary, subsequent PR will remove this.
|
||||
{"batchnorm_epsilon_training_mode", "training only", {}},
|
||||
{"batchnorm_example_training_mode", "training only", {}},
|
||||
{"bernoulli", "type error", {}},
|
||||
{"bernoulli_double", "type error", {}},
|
||||
{"bernoulli_double_expanded", "type error", {}},
|
||||
{"bernoulli_expanded", "type error", {}},
|
||||
{"bernoulli_seed", "type error", {}},
|
||||
{"bernoulli_seed_expanded", "type error", {}},
|
||||
{"castlike_BFLOAT16_to_FLOAT", "type error", {}},
|
||||
{"castlike_BFLOAT16_to_FLOAT_expanded", "type error", {}},
|
||||
{"castlike_FLOAT_to_BFLOAT16", "type error", {}},
|
||||
{"castlike_FLOAT_to_BFLOAT16_expanded", "type error", {}},
|
||||
{"castlike_FLOAT_to_STRING", "type error", {}},
|
||||
{"castlike_FLOAT_to_STRING_expanded", "type error", {}},
|
||||
{"convtranspose_autopad_same", "type error", {}},
|
||||
{"gru_batchwise", "type error", {}},
|
||||
{"lstm_batchwise", "type error", {}},
|
||||
{"optional_get_element", "type error", {}},
|
||||
{"optional_get_element_sequence", "type error", {}},
|
||||
{"optional_has_element", "type error", {}},
|
||||
{"optional_has_element_empty", "type error", {}},
|
||||
{"shape_end_1", "type error", {}},
|
||||
{"shape_end_negative_1", "type error", {}},
|
||||
{"shape_start_1", "type error", {}},
|
||||
{"shape_start_1_end_2", "type error", {}},
|
||||
{"shape_start_1_end_negative_1", "type error", {}},
|
||||
{"shape_start_negative_1", "type error", {}},
|
||||
{"simple_rnn_batchwise", "type error", {}},
|
||||
#ifdef ENABLE_TRAINING
|
||||
{"adagrad", "not a registered function/op", {}}, // Op not registered.
|
||||
{"adagrad_multiple", "not a registered function/op", {}}, // Op not registered.
|
||||
|
|
|
|||
|
|
@ -1,33 +0,0 @@
|
|||
jobs:
|
||||
- job: Debug_Build
|
||||
pool: Linux-CPU
|
||||
steps:
|
||||
|
||||
- task: CmdLine@2
|
||||
displayName: 'Clean untagged docker images'
|
||||
inputs:
|
||||
script: |
|
||||
docker container prune -f
|
||||
docker image prune -f
|
||||
workingDirectory: $(Build.BinariesDirectory)
|
||||
continueOnError: true
|
||||
condition: always()
|
||||
|
||||
- template: templates/get-docker-image-steps.yml
|
||||
parameters:
|
||||
Dockerfile: tools/ci_build/github/linux/docker/Dockerfile.ubuntu_server
|
||||
Context: tools/ci_build/github/linux/docker
|
||||
DockerBuildArgs: "--build-arg BUILD_USER=onnxruntimedev --build-arg BUILD_UID=$(id -u) --build-arg OS_VERSION=20.04 --build-arg PYTHON_VERSION=3.6"
|
||||
Repository: onnxruntime-server-ubuntu20.04
|
||||
|
||||
- task: CmdLine@2
|
||||
displayName: 'Run docker image'
|
||||
inputs:
|
||||
script: docker run --rm --volume /data/onnx:/data/onnx:ro --volume $(Build.SourcesDirectory)/server:/onnxruntime_src --volume $(Build.BinariesDirectory):/build --volume /data/models:/build/models:ro onnxruntime-server-ubuntu20.04 /bin/bash /onnxruntime_src/ci/run.sh
|
||||
workingDirectory: $(Build.SourcesDirectory)/tools/ci_build/github/linux/docker
|
||||
|
||||
- template: templates/component-governance-component-detection-steps.yml
|
||||
parameters :
|
||||
condition : 'ci_only'
|
||||
|
||||
- template: templates/clean-agent-build-directory-step.yml
|
||||
Loading…
Reference in a new issue