Engineering stories, perspectives, and product updates from the team building Depot.

Guides

Accelerating your test suite in CI banner
Wito Delnat
Wito Delnat
26.06.18

Accelerating your test suite in CI

Speeding up CI isn't one heroic refactor, it's a hunt for the next bottleneck, and for most teams the first one is the test suite. Here's how to attack it with parallelism, sharding, prebuilt images, and a job-density rule that keeps wider sharding from quietly torching your bill.
Speed up CI by running independent steps in parallel banner
Iris Scholten
Iris Scholten
26.05.26

Speed up CI by running independent steps in parallel

Most CI jobs run as one long serial script even when half the work doesn't depend on the other half. You can run independent steps in parallel for faster CI. We'll compare two ways to do it: shell backgrounding and Depot CI's parallel steps.
How I run distributed Rust fuzzing in GitHub Actions banner
Chris Goller
Chris Goller
26.04.22

How I run distributed Rust fuzzing in GitHub Actions

With agents writing the initial fuzz harness, the hardest part of getting fuzzing into CI is basically gone. This is the setup I landed on: cargo fuzz, a GitHub Actions matrix job to fan work across multiple runners, and Actions cache to keep the corpus growing between runs.
Migrating my workflows from GitHub Actions to Depot CI banner
Andrea Anderson
Andrea Anderson
26.04.09

Migrating my workflows from GitHub Actions to Depot CI

Depot CI runs GitHub Actions workflows on Depot infrastructure, and migrating is pretty seamless. Here's a walkthrough of moving an app's CI over, from installing the CLI to digging into logs.
The end of push-wait-guess CI banner
Andrew "Watts" Watkins
Andrew "Watts" Watkins
26.03.27

The end of push-wait-guess CI

The old CI debugging loop goes: edit YAML, commit, push, wait, squint at logs, repeat. Depot CI replaces that with a local loop you can actually control, from running workflows against uncommitted changes to SSHing into the runner mid-job.
Optimize your Dockerfile for 5x faster builds banner
Andrea Anderson
Andrea Anderson
26.01.22

Optimize your Dockerfile for 5x faster builds

Slow Docker builds are annoying and disrupt your flow. This guide shows practical techniques to optimize your Dockerfile, from simple instruction reordering to advanced caching strategies, with real measurements from a production-like Node.js application.
Graceful Shutdown in Go banner
Chris Goller
Chris Goller
25.12.16

Graceful Shutdown in Go

When graceful shutdown is an afterthought, it's one of the most common sources of production bugs. When servers restart, work gets dropped, state gets lost, and you end up chasing weird behavior at startup. Here's how to use contexts and WaitGroups to implement clean shutdowns that don't lose work or corrupt state.
The ultimate guide to Docker build cache banner
Andrea Anderson
Andrea Anderson
25.12.05

The ultimate guide to Docker build cache

Ever wondered when Docker reuses cached layers and when it rebuilds from scratch? This guide breaks down the mechanics of how caching works, how cache invalidation cascades through your builds, and how different instructions affect the cache.
Troubleshooting GitHub Actions with self-hosted runners banner
Pedro Guerra
Pedro Guerra
25.11.14

Troubleshooting GitHub Actions with self-hosted runners

Not every self-hosted runner failure is actually a runner problem. GitHub Actions and third-party actions often expect environmental features that GitHub-hosted runners provide by default. When your setup differs, you may get cryptic errors that point to the wrong cause. Here are three real support cases where the symptoms looked like runner issues but weren't.
From Go code to container image with Depot API banner
Chris Goller
Chris Goller
25.08.26

From Go code to container image with Depot API

Build a specialized container building system using Depot's low-level Go SDK to transform tar archives into container images. This advanced walkthrough demonstrates the three-step build flow: registering builds, acquiring ephemeral BuildKit machines, and configuring custom build solutions.

Older posts

Page 6 / 6

Start building with Depot
in minutes