[Question] Can I run the task with macos_instance VMs but run on the github runner ubuntu-latest? #599
-
Say that I have a GitHub action file name: Run Cirrus Tasks
on: [push, pull_request]
jobs:
cirrus:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: cirruslabs/cirrus-action@master And a macos_instance:
image: ghcr.io/cirruslabs/macos-ventura-base:latest
task:
script: echo "Hello World from macOS!" When the action run, is the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Unfortunately, in order to run |
Beta Was this translation helpful? Give feedback.
-
Thanks for your response, I found that this feature is what I'm looking for https://github.com/cirruslabs/tart#github-actions, say that I want to run the github action on the cirrus VMs, but it seems it's not free for open-source projects. |
Beta Was this translation helpful? Give feedback.
Unfortunately, in order to run
macos_instance
s you need a macOS host. Cirrus CLI uses Tart which only works on macOS hosts with M1/M2 chips.