From 978687bd33f4e6c2691ac507f900d2bc9678d779 Mon Sep 17 00:00:00 2001 From: Andrew White Date: Mon, 27 Jul 2026 07:19:14 -0500 Subject: [PATCH] fix: bobber build runs twice in docker_build stage --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8003a79..fc2c962 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,9 +28,9 @@ docker_build: - python setup.py bdist_wheel sdist - pip install dist/nvidia_bobber-*-none-any.whl - echo "Building latest Bobber image" - - bobber build + - bobber build | tee /tmp/bobber_build.log # Capture the build ID during the image build process and ensure it is listed in the system - - docker images | grep `bobber build | grep "Successfully built" | awk '{print $3}'` + - docker images | grep `grep "Successfully built" /tmp/bobber_build.log | awk '{print $3}'` test: stage: test