From 658e5a795d66970c40ed3beaa1a84cd415f83ce5 Mon Sep 17 00:00:00 2001 From: Ayush Ranjan Date: Tue, 28 Jan 2025 15:20:21 -0800 Subject: [PATCH] Disable ffmpeg_test on COS. This test mysteriously fails on Buildkite. Attempts to repro this failure in similar environments failed. This test is still running on Ubuntu and works fine on COS when manually tested. PiperOrigin-RevId: 720726080 --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 04230817b..9353e4279 100644 --- a/Makefile +++ b/Makefile @@ -332,7 +332,8 @@ cos-gpu-all-tests: gpu-images cos-gpu-smoke-tests $(RUNTIME_BIN) @$(call sudo,test/gpu:imagegen_test,--runtime=$(RUNTIME) -test.v --cos-gpu $(ARGS)) @$(call sudo,test/gpu:sr_test,--runtime=$(RUNTIME) -test.v --cos-gpu $(ARGS)) @$(call sudo,test/gpu:nccl_test,--runtime=$(RUNTIME) -test.v --cos-gpu $(ARGS)) - @$(call sudo,test/gpu:ffmpeg_test,--runtime=$(RUNTIME) -test.v --cos-gpu $(ARGS)) +# TODO(b/392679618): Re-enable ffmpeg test. +# @$(call sudo,test/gpu:ffmpeg_test,--runtime=$(RUNTIME) -test.v --cos-gpu $(ARGS)) @$(call sudo,test/gpu/vllm:vllm_test,--runtime=$(RUNTIME) -test.bench=. -test.benchtime=1x -cos-gpu -test.v $(ARGS)) @$(call sudo,test/gpu:sniffer_test,--runtime=$(RUNTIME) -test.v --cos-gpu $(ARGS)) .PHONY: cos-gpu-all-tests