ci: ensure macos test jobs run on the right os version

This commit is contained in:
Meghan Denny
2025-07-15 17:13:07 -07:00
committed by GitHub
parent 93cc51c974
commit 023cbb3847

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,
};
}