Azure instance

Run GitHub Actions on Azure Standard_D8ps_v5

Azure Standard_D8ps_v5 — 8 vCPU, 32 GiB RAM, ARM64. 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 32 GiB RAM — sized for workloads the default GitHub-hosted runners can't comfortably host, all on your own Azure account.
  • Native ARM Ampere Altra on Azure — multi-arch builds.
  • Ephemeral by default — each job gets a clean VM, no leaked state from previous PRs.

.cirun.yml

.cirun.yml
1runners:
2 - name: azure-standard-d8ps-v5
3 cloud: azure
4 instance_type: Standard_D8ps_v5
5 # Use Canonical's ARM64 Ubuntu 22.04 LTS SKU on Azure.
6 machine_image: Canonical:0001-com-ubuntu-server-jammy:22_04-lts-arm64:latest
7 labels:
8 - cirun-azure-standard-d8ps-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.