Azure instance
Run GitHub Actions on Azure Standard_F8s_v2
Azure Standard_F8s_v2 — 8 vCPU, 16 GiB RAM, x86_64. Cirun spins one up per workflow on your Azure account and tears it down when the job finishes — you pay Azure for the compute, nothing per CI minute.
Why this fits
- 8 vCPU and 16 GiB RAM — sized for workloads the default GitHub-hosted runners can't comfortably host, all on your own Azure account.
- Compute-optimised CI when 16 GiB RAM is enough and clock is what matters.
- Ephemeral by default — each job gets a clean VM, no leaked state from previous PRs.
.cirun.yml
.cirun.yml
1runners:2 - name: azure-standard-f8s-v23 cloud: azure4 instance_type: Standard_F8s_v25 # Azure image reference is Publisher:Offer:SKU:Version (string-colon6 # form) or an explicit map.7 machine_image: Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest8 labels:9 - cirun-azure-standard-f8s-v2
Drop this in your repo root. The first workflow that requests the runner label spins this configuration up on your cloud account.
Ready to run your CI here?
Cirun is free for open source. For private repos, flat monthly plans by repo count — never per CI minute.
Sources · verified 2026-05-25