From 46f9c3286d3dcafb0b12cdd98debb025d0b0b21a Mon Sep 17 00:00:00 2001 From: Fedor Korotkov Date: Tue, 7 Jul 2026 12:53:50 -0400 Subject: [PATCH] Run macOS unit tests on hosted runner --- .github/workflows/ci.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d35be9d..ac397c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,12 +64,5 @@ jobs: with: go-version-file: go.mod cache: true - - name: Pre-pull default Tart image - run: tart pull ghcr.io/cirruslabs/macos-tahoe-base:latest - - name: Run tests - run: go test -timeout=20m -ldflags="-B gobuildid" -v -count=1 ./... - - name: Clean up test VMs - if: always() - run: | - tart list - rm -rf ~/.tart/vms/orchard-* + - name: Run unit tests + run: go list ./... | grep -v '/internal/tests' | xargs go test -timeout=20m -ldflags="-B gobuildid" -v -count=1