From d7e063c5c601d20714649a8961f1ed4705d63bd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Sat, 27 Jun 2026 17:09:00 -0700 Subject: [PATCH 1/2] macos-13 to macos-15-intel --- .github/workflows/build.yml | 2 +- .github/workflows/fetch-configlet.yml | 2 +- .github/workflows/tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f96a9fbe..a7e78de6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: arch: x86-64 - os: macos - runs-on: macos-13 + runs-on: macos-15-intel arch: x86-64 - os: macos diff --git a/.github/workflows/fetch-configlet.yml b/.github/workflows/fetch-configlet.yml index 82a3232d..7ccd0fd0 100644 --- a/.github/workflows/fetch-configlet.yml +++ b/.github/workflows/fetch-configlet.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-24.04 - os: macos - runs-on: macos-13 + runs-on: macos-15-intel - os: windows runs-on: windows-2022 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e5023724..c04b2376 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,7 +22,7 @@ jobs: arch: x86-64 - os: macos - runs-on: macos-13 + runs-on: macos-15-intel arch: x86-64 - os: windows From 2f37aaf1ceff0bd38a5404e3130bb9fdee802947 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Sat, 27 Jun 2026 17:29:32 -0700 Subject: [PATCH 2/2] Explicitly decline formatting in `fmt` test --- tests/test_binary_fmt.nim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_binary_fmt.nim b/tests/test_binary_fmt.nim index f70f044a..13642479 100644 --- a/tests/test_binary_fmt.nim +++ b/tests/test_binary_fmt.nim @@ -211,8 +211,7 @@ proc main = suite "fmt, with --update, without --yes, for an exercise that is not formatted (no diff, and exits with 1)": test "-e bob": - let exitCode = execCmdEx(&"{fmtUpdateUnformatted} -e bob")[1] - check exitCode == 1 + execAndCheckExitCode(1, &"{fmtUpdateUnformatted} -e bob", inputStr = "n") checkNoDiff(unformattedTrackDir) suite "fmt, with --update, for an exercise that is not formatted (diff, and exits with 0)":