Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as yaml from "@std/yaml";
import $ from "dax";

enum Runner {
Mac13 = "macos-15-intel",
MacIntel = "macos-15-intel",
MacLatest = "macos-latest",
Windows = "windows-latest",
// uses an older version of ubuntu because of issue dprint/#483
Expand All @@ -29,7 +29,7 @@ function withCondition(
}

const profileDataItems: ProfileData[] = [{
runner: Runner.Mac13,
runner: Runner.MacIntel,
target: "x86_64-apple-darwin",
runTests: true,
}, {
Expand Down Expand Up @@ -173,7 +173,7 @@ const ci = {
...profiles.map((profile) => {
function getRunSteps() {
switch (profile.runner) {
case Runner.Mac13:
case Runner.MacIntel:
case Runner.MacLatest:
return [
`cd target/${profile.target}/release`,
Expand Down
Loading