Skip to content

Commit

Permalink
Reference the new runner types doc page
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwgillespie committed Jun 20, 2024
1 parent 450d6d3 commit 6a6e9b0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 46 deletions.
22 changes: 1 addition & 21 deletions content/github-actions/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,4 @@ Startup plans and above can pay for additional usage on a per minute basis for b

### Additional usage pricing for GitHub Actions minutes

Below is the per-minute price for each type of labeled runner for **Startup** and **Business** plans once they exhaust their bucket of included minutes.

| Label | CPUs | Memory | Disk Size | Minute Multiple | Per Minute Price |
| :------------------------- | :--- | :----- | :-------- | :-------------- | :--------------- |
| `depot-ubuntu-22.04-small` | 2 | 2 GB | 100 GB | 0.5x | $0.002 |
| `depot-ubuntu-22.04` | 2 | 8 GB | 100 GB | 1x | $0.004 |
| `depot-ubuntu-22.04-4` | 4 | 16 GB | 150 GB | 2x | $0.008 |
| `depot-ubuntu-22.04-8` | 8 | 32 GB | 300 GB | 4x | $0.016 |
| `depot-ubuntu-22.04-16` | 16 | 64 GB | 600 GB | 8x | $0.032 |
| `depot-ubuntu-22.04-32` | 32 | 128 GB | 1200 GB | 16x | $0.064 |
| `depot-ubuntu-22.04-64` | 64 | 256 GB | 2400 GB | 32x | $0.128 |

| Label | CPUs | Memory | Disk Size | Minute Multiple | Per Minute Price |
| :----------------------------- | :--- | :----- | :-------- | :-------------- | :--------------- |
| `depot-ubuntu-22.04-arm-small` | 2 | 2 GB | 100 GB | 0.5x | $0.002 |
| `depot-ubuntu-22.04-arm` | 2 | 8 GB | 100 GB | 1x | $0.004 |
| `depot-ubuntu-22.04-arm-4` | 4 | 16 GB | 150 GB | 2x | $0.008 |
| `depot-ubuntu-22.04-arm-8` | 8 | 32 GB | 300 GB | 4x | $0.016 |
| `depot-ubuntu-22.04-arm-16` | 16 | 64 GB | 600 GB | 8x | $0.032 |
| `depot-ubuntu-22.04-arm-32` | 32 | 128 GB | 1200 GB | 16x | $0.064 |
| `depot-ubuntu-22.04-arm-64` | 64 | 256 GB | 2400 GB | 32x | $0.128 |
The **Startup** and **Business** plans have the option to pay for additional GitHub Actions minutes on a per-minute basis. See the [runner type list](/docs/github-actions/runner-types) for the per-minute pricing for each runner type.
26 changes: 1 addition & 25 deletions content/github-actions/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,31 +47,7 @@ jobs:

### Depot supported labels

Depot runners are configured by specifying any one of the labels below for Intel runners:

| Label | CPUs | Memory | Disk Size | OS | Architecture |
| -------------------------- | ---- | ------ | --------- | ------------ | ------------ |
| `depot-ubuntu-22.04-small` | 2 | 2 GB | 100 GB | Ubuntu 22.04 | Intel |
| `depot-ubuntu-22.04` | 2 | 8 GB | 100 GB | Ubuntu 22.04 | Intel |
| `depot-ubuntu-22.04-4` | 4 | 16 GB | 150 GB | Ubuntu 22.04 | Intel |
| `depot-ubuntu-22.04-8` | 8 | 32 GB | 300 GB | Ubuntu 22.04 | Intel |
| `depot-ubuntu-22.04-16` | 16 | 64 GB | 600 GB | Ubuntu 22.04 | Intel |
| `depot-ubuntu-22.04-32` | 32 | 128 GB | 1200 GB | Ubuntu 22.04 | Intel |
| `depot-ubuntu-22.04-64` | 64 | 256 GB | 2400 GB | Ubuntu 22.04 | Intel |

Arm runners are now available in **beta** and can be specified with the following labels:

| Label | CPUs | Memory | Disk Size | OS | Architecture |
| ------------------------------ | ---- | ------ | --------- | ------------ | ------------ |
| `depot-ubuntu-22.04-arm-small` | 2 | 2 GB | 100 GB | Ubuntu 22.04 | arm64 |
| `depot-ubuntu-22.04-arm` | 2 | 8 GB | 100 GB | Ubuntu 22.04 | arm64 |
| `depot-ubuntu-22.04-arm-4` | 4 | 16 GB | 150 GB | Ubuntu 22.04 | arm64 |
| `depot-ubuntu-22.04-arm-8` | 8 | 32 GB | 300 GB | Ubuntu 22.04 | arm64 |
| `depot-ubuntu-22.04-arm-16` | 16 | 64 GB | 600 GB | Ubuntu 22.04 | arm64 |
| `depot-ubuntu-22.04-arm-32` | 32 | 128 GB | 1200 GB | Ubuntu 22.04 | arm64 |
| `depot-ubuntu-22.04-arm-64` | 64 | 256 GB | 2400 GB | Ubuntu 22.04 | arm64 |

**Note**: We also support the `depot-ubuntu-latest-<cpus>` alias if you want to use the latest Ubuntu version.
Depot supports a variety of different runner types and sizes depending on your CI job needs, including Intel and Arm runners with up to 64 CPUs, and I/O-optimized runners with local NVMe disks. See the [runner type docs](/docs/github-actions/runner-types) for a full list of available labels.

## View GitHub Actions jobs

Expand Down
2 changes: 2 additions & 0 deletions content/github-actions/runner-types.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
runs-on: depot-ubuntu-22.04
```
**Note**: We support the `depot-ubuntu-latest-*` alias for `depot-ubuntu-22.04-*` if you want to use the latest Ubuntu version.

## Intel runners

Intel runners use AMD EC2 instances. Their EBS volume is provisioned with 8000 IOPS and 250 MB/s throughput.
Expand Down

0 comments on commit 6a6e9b0

Please sign in to comment.