Azure instance
Run GitHub Actions on Azure Standard_D16s_v5
Azure Standard_D16s_v5 — 16 vCPU, 64 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
- 16 vCPU and 64 GiB RAM — sized for workloads the default GitHub-hosted runners can't comfortably host, all on your own Azure account.
- Monorepo + parallel test shards on Azure.
- Ephemeral by default — each job gets a clean VM, no leaked state from previous PRs.
.cirun.yml
.cirun.yml
1runners:2 - name: azure-standard-d16s-v53 cloud: azure4 instance_type: Standard_D16s_v55 # 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-d16s-v5
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