Label Reference
Complete specification of StarSling runner labels
StarSling uses structured labels to specify runner configuration. A label is a base runner name, optionally followed by / and a configuration selector:
starsling-ubuntu-24.04-gpu/gpus=rtx-5090:1
└────── base label ──────┘ └─ selector ──┘The numeric suffix on a base label indicates the vCPU count (e.g. -8 = 8 vCPU). The label without a suffix is the 4 vCPU default. Selectors are used by GPU runners to choose a card; CPU runners take no selector.
StarSling Labels
| Label | OS | vCPU | Memory | Price per minute |
|---|---|---|---|---|
starsling-ubuntu-24.04-2 | Ubuntu 24.04 | 2 | 8 GB | $0.004 |
starsling-ubuntu-24.04 | Ubuntu 24.04 | 4 | 16 GB | $0.008 |
starsling-ubuntu-24.04-8 | Ubuntu 24.04 | 8 | 32 GB | $0.016 |
starsling-ubuntu-24.04-16 | Ubuntu 24.04 | 16 | 64 GB | $0.032 |
starsling-ubuntu-24.04-32 | Ubuntu 24.04 | 32 | 128 GB | $0.064 |
starsling-ubuntu-24.04-64 | Ubuntu 24.04 | 64 | 256 GB | $0.128 |
GPU Labels
GPU runners are in private beta. Contact founders@starsling.dev to request access.
GPU runners use the starsling-ubuntu-24.04-gpu base label and run Ubuntu 24.04 like every other size.
| Label | GPU | vCPU | Memory | Disk | Price per minute |
|---|---|---|---|---|---|
starsling-ubuntu-24.04-gpu | RTX PRO 6000 | 4 | 16 GB | 100 GB | $0.05922 |
starsling-ubuntu-24.04-gpu/gpus=rtx-5090:1 | RTX 5090 | 4 | 16 GB | 100 GB | $0.03022 |
starsling-ubuntu-24.04-gpu/gpus=rtx-4090:1 | RTX 4090 | 4 | 16 GB | 100 GB | $0.02522 |
The gpus selector
gpus=<sku>:<count> chooses the card and how many of them. The SKU is one of:
| SKU | GPU |
|---|---|
rtx-pro-6000 | NVIDIA RTX PRO 6000 |
rtx-5090 | NVIDIA RTX 5090 |
rtx-4090 | NVIDIA RTX 4090 |
While GPU runners are in beta they are single-card, so <count> is always 1.
The bare starsling-ubuntu-24.04-gpu label carries no selector and is equivalent to starsling-ubuntu-24.04-gpu/gpus=rtx-pro-6000:1.
See Compute Specifications for pricing details.
GitHub Label Mapping
The default starsling-ubuntu-24.04 (4 vCPU / 16 GB) replaces these GitHub-hosted runner labels:
| GitHub-hosted Label | StarSling Label |
|---|---|
ubuntu-latest | starsling-ubuntu-24.04 |
ubuntu-24.04 | starsling-ubuntu-24.04 |
For larger workloads, opt into a bigger size by appending the vCPU suffix (e.g. starsling-ubuntu-24.04-8). For cost-sensitive or lightweight jobs, use the 2 vCPU starsling-ubuntu-24.04-2 label.
Examples
Basic Usage
jobs:
build:
runs-on: starsling-ubuntu-24.04Drop-in Replacement
jobs:
build:
# Before: runs-on: ubuntu-latest
runs-on: starsling-ubuntu-24.04Larger Size
jobs:
build:
runs-on: starsling-ubuntu-24.04-8GPU Runner
jobs:
train:
runs-on: starsling-ubuntu-24.04-gpuSpecific GPU Card
jobs:
train:
runs-on: starsling-ubuntu-24.04-gpu/gpus=rtx-5090:1Invalid Labels
These will fail to match a runner:
| Invalid Label | Reason |
|---|---|
starsling-ubuntu-22.04 | Only Ubuntu 24.04 is supported |
starsling/ubuntu-24.04 | Use hyphens in the base label — / only introduces a selector |
starsling-ubuntu-latest | Use starsling-ubuntu-24.04 |
starsling-ubuntu-24.04-gpu/gpus=rtx-3090:1 | Only the SKUs listed under GPU Labels are available |