🚀 Introducing Ultra Runners — Up to 3x faster GitHub Actions jobs
GitHub Actions Benchmark
Moby
moby/mobyMoby is an open-source project created by Docker to enable and accelerate software containerization. It provides a "Lego set" of toolkit components, the framework for assembling them into custom container-based systems, and a place for all container enthusiasts and professionals to experiment and exchange ideas.
With
depot build
, the past 10 runs were33% faster
saving a total of
1m 53s
compared to
docker build
.About the benchmark
For every commit to moby/moby, GitHub Actions runs one workflow job building the project with the
docker/build-push-action
action and caching enabled and one workflow job building the project with depot build
. The time each job takes is recorded and visualized here.Last 10 GitHub Actions Runs
Merge pull request #49158 from akerouanton/netdrivers-store-param
Depot
21s / 28% fasterDocker
29sMerge pull request #49147 from thaJeztah/fix_gc_default
Depot
19s / 2.1x fasterDocker
39sMerge pull request #49151 from thaJeztah/chrootarchive_reduce_deps
Depot
20s / 20% fasterDocker
25sMerge pull request #49140 from vvoland/c8d-fix-duplicate-containerdimages-import
Depot
23s / 45% fasterDocker
42sMerge pull request #49032 from thaJeztah/vendor_cgroups
Depot
29s / 29% fasterDocker
41sMerge pull request #49072 from dmcgowan/decouple-archive-system
Depot
28s / 0% fasterDocker
28sMerge pull request #49144 from thaJeztah/docs_api_isolation
Depot
20s / 17% fasterDocker
24sMerge pull request #49146 from thaJeztah/bump_x_net
Depot
27s / 40% fasterDocker
45sMerge pull request #49133 from vvoland/c8d-remove-getimagemanifest
Depot
22s / 27% fasterDocker
30sMerge pull request #49122 from XxRoloxX/49033-update-swarmjoin-datapathaddr-examples
Depot
19s / 50% fasterDocker
38sDocker Workflow
jobs:
benchmark-docker:
name: Build with Docker
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
- uses: docker/build-push-action@v2
with:
tags: depot/benchmark-moby:benchmark
cache-from: type=gha
cache-to: type=gha,mode=max
View workflow source benchmark-docker:
name: Build with Docker
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
- uses: docker/build-push-action@v2
with:
tags: depot/benchmark-moby:benchmark
cache-from: type=gha
cache-to: type=gha,mode=max
Depot Workflow
jobs:
benchmark-depot:
name: Build with Depot
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: depot/setup-action@v1
- uses: depot/build-push-action@v1
with:
tags: depot/benchmark-moby:benchmark
View workflow source benchmark-depot:
name: Build with Depot
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: depot/setup-action@v1
- uses: depot/build-push-action@v1
with:
tags: depot/benchmark-moby:benchmark
Your builds have never been this quick.
Start building