From 0d34fae201faae0b46c879dee3df30cf35b6a1e8 Mon Sep 17 00:00:00 2001 From: Ashcon Partovi Date: Fri, 20 Dec 2024 17:58:49 -0800 Subject: [PATCH] Fix --- .buildkite/ci.mjs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.buildkite/ci.mjs b/.buildkite/ci.mjs index 769bad43ef..7f9aac99ff 100755 --- a/.buildkite/ci.mjs +++ b/.buildkite/ci.mjs @@ -322,10 +322,8 @@ function getCppAgent(platform, options) { * @returns {Agent} */ function getZigAgent(platform, options) { - const { arch } = platform; return { queue: "build-zig", - "distro-version": "15.1", }; } @@ -419,7 +417,6 @@ function getBuildVendorStep(platform, options) { * @returns {Step} */ function getBuildCppStep(platform, options) { - const toolchain = getBuildToolchain(platform); return { key: `${getTargetKey(platform)}-build-cpp`, label: `${getTargetLabel(platform)} - build-cpp`, @@ -482,7 +479,7 @@ function getLinkBunStep(platform, options) { `${getTargetKey(platform)}-build-cpp`, `${getTargetKey(platform)}-build-zig`, ], - agents: getCppAgent(platform, options, true), + agents: getCppAgent(platform, options), retry: getRetry(), cancel_on_build_failing: isMergeQueue(), env: {