Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Electroid committed Dec 21, 2024
1 parent e2d7077 commit 0d34fae
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .buildkite/ci.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
};
}

Expand Down Expand Up @@ -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`,
Expand Down Expand Up @@ -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: {
Expand Down

0 comments on commit 0d34fae

Please sign in to comment.