Compare commits

...

1 Commits

Author SHA1 Message Date
Meghan Denny
023cbb3847 ci: ensure macos test jobs run on the right os version 2025-07-15 17:13:07 -07:00

View File

@@ -346,13 +346,14 @@ function getZigAgent(platform, options) {
* @returns {Agent}
*/
function getTestAgent(platform, options) {
const { os, arch } = platform;
const { os, arch, release } = platform;
if (os === "darwin") {
return {
queue: `test-${os}`,
os,
arch,
release,
};
}