Why We Built Machine.dev

June 20, 2025 Leonard O'Sullivan
Machine.dev GPU-powered runners for GitHub Actions - Performance comparison chart

Background

Over the past year we've worked with language models of every size—from calling ChatGPT and Claude to fine-tuning our own models for narrow tasks. But the tooling has been single-threaded: you open a notebook, run a cell, wait… and nothing happens unless you're staring at the screen. Automation and parallelism are painfully limited.

GitHub Actions looked like the ideal way to automate those fine-tuning pipelines. It already gives us logs, artefact storage, and team collaboration with zero maintenance. The blocker? No affordable GPUs. We needed a workflow runner that could spin up a GPU on demand, run a job, and disappear.

This is when we discovered the following:

  • Hosted GPU runners were eye-watering. GitHub's own T4 runner is $0.07 /min—fine for the occasional build, brutal for nightly retraining or PR tests.
  • Self-hosting drained entire sprints. Patching AMIs, dodging Spot interruptions, wiring scaling logic—all before training a single model.
  • "Free" DIY frameworks weren't free. Running ARC on EKS adds control-plane fees, load balancers, NAT gateways, and ingress charges every time a layer is pulled from Docker Hub or a model is pulled from Hugging Face.

So we built Machine.dev—a drop-in GPU runner for GitHub Actions that feels like the GitHub runners you know, but is purpose-built for ML and 10–14× cheaper.

How Machine slashes your CI bill

Machine Self-hosted GPU (ARC et al.)
Startup latency around 60 seconds VM build time + kube-autoscaler jitter
Pricing From $0.005–$0.01/min on T4G/T4 (Spot) (Machine.dev) Pay for instances plus control plane, EBS, LB, NAT, data transfer
Operational overhead Zero—ephemeral VMs, patched images, CUDA pre installed Maintain AMIs, clusters, scaling logic
Data ingress/egress fees $0 (bundled into minute rate) Charged per GiB from your VPC or k8s cluster
GPUs available T4, L4, L40S, A10G, T4G, (Trainium, Inferentia) (Machine.dev) Whatever you provision & maintain

Because of our Intelligent Tiering Layer, the exact same workload that costs $0.07/min on GitHub runners lands at $0.005–$0.01/min on Machine—an 85% saving in real-world tests (Machine.dev).

Credits, not contracts

Every new account is eligible for 2,000 free credits—that's $10 USD to kick the tyres. One Credit equates to one Minute on our cheapest T4G tier, so you get up to 33 hours of GPU time on day one.

Need more juice? Choose a monthly subscription to get bonus credits depending on the monthly commitment. Alternatively just keep topping up with One-Time Purchase Credit Bundles with zero long term commitment.

Getting started (takes longer to read than to do)

  1. Sign up for the Waitlist at Machine.dev.
  2. Complete onboarding - your 2,000 credits drop instantly.
  3. Add a single label to an existing workflow:
GitHub Actions with Machine
jobs:
  train:
    runs-on:
      - machine # request a Machine runner
      - gpu=T4G # 16GB VRAM → $0.005/min
      - cpu=4
      - ram=16
      - tenancy=spot
    steps:
      - uses: actions/checkout@v4
      - name: Train
        run: python train.py

Commit, push, watch your pipeline light up a GPU in under a minute.

Why you won't miss your own fleet

  • No surprise line-items. Minute pricing already covers volumes, ingress, egress—nothing hidden in an AWS bill.
  • Security by default. Every job runs on a fresh, isolated VM; runners are never reused.
  • Global reliability. Multiple regions live today, so GPUs are ready when you are.
  • Intelligent Tiering. We hunt globally for the best price and lowest interruption rate.

What's next

  • Expanding to GCP for even more GPU options
  • Multi-GPU runners
  • Truly serverless inference endpoints that scale from zero (no K8s sleight-of-hand)

Your feedback in Discord shapes the roadmap. Jump in, burn through the free credits, and tell us what your perfect GPU runner looks like.

Ready to stop babysitting clusters and start shipping models with GPU-powered GitHub Actions? Check out our affordable pricing options and grab your credits to give Machine a spin.

Share: