perf(ci): use Docker integrated BuildKit

This commit is contained in:
2026-08-12 15:57:36 +08:00
parent 3994bfb1da
commit a408d65408
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ def test_jenkins_uses_fast_index_for_every_pip_stage() -> None:
def test_native_amd64_pipeline_does_not_boot_buildx() -> None:
pipeline = (Path(__file__).parents[1] / "Jenkinsfile").read_text()
assert 'test "$(uname -m)" = x86_64' in pipeline
assert "DOCKER_BUILDKIT=0 ./scripts/ci-docker.sh build" in pipeline
assert "DOCKER_BUILDKIT=1 ./scripts/ci-docker.sh build" in pipeline
assert "buildx" not in pipeline
assert "--no-cache" not in pipeline