Migrating Your GitHub CI to Hugging Face Jobs

Hugging Face Blog Tools

Summary

This article provides a step-by-step guide on migrating GitHub Actions CI to run on Hugging Face Jobs, enabling GPU-based test suites and cutting CPU CI time by 30% for projects like Trackio.

No content available
Original Article
View Cached Full Text

Cached at: 06/10/26, 12:26 AM

Migrating Your GitHub CI to Hugging Face Jobs

Source: https://huggingface.co/blog/github-ci-hf-jobs Back to Articles

https://huggingface.co/login?next=%2Fblog%2Fgithub-ci-hf-jobs-

Abubakar Abid’s avatar

If you have a GitHub repository and you have GitHub Actions enabled, you probably use GitHub-hosted runners for CI. That is the default for many projects because it is simple: add a workflow, writeruns\-on: ubuntu\-latest, and GitHub gives you a machine.

That default is convenient, but it also has limits. GitHub Actions can be slow or down for maintenance, the hosted machines are generic, and GPU access is not something most open-source projects can just turn on. ForTrackio, those limits started to matter. We wanted both reliable CPU CI for basic unit tests and frontend checks, but also GPU CI for tests that need to run on actual CUDA hardware.

So built an alternative: keep GitHub Actions in charge of CI, but run the jobs onHugging Face Jobs.

The result: Trackio’s CI now runs on Hugging Face Jobs and streams back real-time logs,cutting our CI time for CPU jobs by about 30% and enabling a whole new test suite that runs on GPU machines!

In this article, we explain step-by-step how to recreate the same setup for your GitHub repo. If you are using an agent, you can point it to this article, since we provide CLI instructions alongside browser-based instructions for us humans.

Let’s start with a quick intro to Hugging Face Jobs!

https://huggingface.co/blog/github-ci-hf-jobs#what-is-hugging-face-jobsWhat is Hugging Face Jobs?

Hugging Face Jobslets you run commands or scripts on Hugging Face’s serverless infrastructure with almost any hardware flavor. A Job is essentially:

  • a command to run
  • a Docker image, from Docker Hub or a Hugging Face Space
  • a hardware flavor, such as CPU ort4\-smallorh200GPU
  • optional environment variables and secrets

For example, you can run:

hf jobs run python:3.12 python -c "print('Hello world')"

or

hf jobs uv run --flavor a10g-small "https://raw.githubusercontent.com/huggingface/trl/main/trl/scripts/sft.py"

That makes Jobs a natural fit for CI. CI jobs are already command-driven, already run in clean environments, and often benefit from choosing exactly the right hardware. For ML libraries, the GPU case is especially compelling: you can run a test suite on real GPU hardware without maintaining your own always-on runner.

The key step is connecting GitHub Actions to HF Jobs, which we describe below.

https://huggingface.co/blog/github-ci-hf-jobs#the-architectureThe architecture

For this setup, we createdhuggingface/jobs\-actions, a small bridge that turns a GitHub Actions job into an ephemeral self-hosted runner running inside an HF Job.

The complete flow looks like this:

  1. A pull request triggers a GitHub Actions workflow.
  2. GitHub queues any job whoseruns\-onlabel is not available, for examplehf\-jobs\-cpu\-upgradeorhf\-jobs\-t4\-small, and sends a signedworkflow\_job\.queuedwebhook to the dispatcher through the GitHub App.
  3. The dispatcher Space verifies the webhook, checks for anhf\-jobs\-\*label, mints a short-lived GitHub runner registration token, and starts an HF Job on the matching hardware.
  4. The HF Job boots an ephemeral GitHub Actions runner and registers it with the repo using that one-shot token.
  5. GitHub assigns the pending workflow job to that runner; the runner executes the CI job, reports status back to GitHub, and exits.

From GitHub’s point of view, this is just a self-hosted runner. From Hugging Face’s point of view, it is just a Job that launches a container to run the workflow steps from the repo’s GitHub Actions.

https://huggingface.co/blog/github-ci-hf-jobs#step-1-duplicate-the-dispatcher-spaceStep 1: Duplicate the dispatcher Space

The first thing you need is the dispatcher. This is a small Docker Space that receives GitHubworkflow\_jobwebhook events and launches HF Jobs in response.

Create this first because the GitHub App needs a webhook URL, and that URL comes from the Space. This Space should be under your own namespace or under a Hugging Face org that you have write access to.

https://huggingface.co/blog/github-ci-hf-jobs#web-setupWeb setup

Go tohuggingface/jobs\-actions\-dispatcherand clickDuplicate this Space.

image

Use:

Owner: your HF user or org
Name: jobs-actions-dispatcher
Hardware: cpu-upgrade

Usecpu\-upgradefor real CI so the dispatcher stays available for GitHub webhooks.cpu\-basicis fine for testing and will probably work, but it can sleep after inactivity; if GitHub’s webhook arrives while it is waking up, the workflow may stay queued forever.

After it builds, open the duplicated Space. You will see a section that says “Required Space secrets,” which you can ignore for now. The landing page should display the GitHub App webhook URL you need in the next step. It will look like this:

https://YOUR-HF-NAMESPACE-jobs-actions-dispatcher.hf.space/webhook

https://huggingface.co/blog/github-ci-hf-jobs#cli-setupCLI setup

If you’d prefer to set up the dispatcher Space with an agent or use a CLI workflow:

export HF_NAMESPACE=your-hf-user-or-org
export SPACE_ID="$HF_NAMESPACE/jobs-actions-dispatcher"

hf repo duplicate huggingface/jobs-actions-dispatcher "$SPACE_ID" \
  --type space \
  --flavor cpu-upgrade \
  --exist-ok

Then set:

export DISPATCHER_URL="https://${HF_NAMESPACE}-jobs-actions-dispatcher.hf.space"

https://huggingface.co/blog/github-ci-hf-jobs#step-2-create-and-install-the-github-appStep 2: Create and install the GitHub App

Next, create and install the GitHub App from the dispatcher Space itself. This App needs permission to listen for queued workflow jobs and create ephemeral self-hosted runner registration tokens.

https://huggingface.co/blog/github-ci-hf-jobs#web-setup-1Web setup

Open your duplicated dispatcher Space:

https://YOUR-HF-NAMESPACE-jobs-actions-dispatcher.hf.space

In the setup form, enter the GitHub repo whose CI should run on HF Jobs:

YOUR-GITHUB-ORG/YOUR-REPO

Then click the button to create the GitHub App. GitHub will ask you to choose a name for the App; the name can be anything, as long as it is available in your GitHub account or org. After you submit, the final screen tells you exactly how to upload the App credentials to the dispatcher Space with thehfCLI.

Important note: you will need to provide anHugging Face tokenthat has permissions to launch Jobs, corresponding to your personal account or an org under which Jobs should be charged. This token should be saved as theHF\_TOKENsecret in your dispatcher Space.

Finally, you will install the App on the same GitHub repo you entered in the Space. In the Trackio setup, we installed it ongradio\-app/trackio.

https://huggingface.co/blog/github-ci-hf-jobs#agent-assisted-setupAgent-assisted setup

The GitHub App manifest flow is still browser-based, but an agent can follow the same Space-driven path:

export HF_NAMESPACE=your-hf-user-or-org
export GITHUB_REPO=YOUR-GITHUB-ORG/YOUR-REPO
open "https://${HF_NAMESPACE}-jobs-actions-dispatcher.hf.space"

Paste$GITHUB\_REPOinto the Space, click the GitHub App creation button, choose any available App name, and follow the generated GitHub instructions.

After the App exists, install it on your repo from the App settings page. For a GitHub org, the installation settings are under:

https://github.com/organizations/YOUR-GITHUB-ORG/settings/installations

https://huggingface.co/blog/github-ci-hf-jobs#step-3-final-dispatcher-settingsStep 3: Final dispatcher settings

At this point, the dispatcher Space should be configured. The GitHub App setup flow generated the commands that upload the App credentials, webhook secret, and Hugging Face token to the Space.

image

By default, HF Jobs are launched under the same namespace as the dispatcher Space. Optionally, setHF\_NAMESPACEas a Space variable if you want to bill jobs to a different Hugging Face user or org:

export SPACE_ID=YOUR-HF-NAMESPACE/jobs-actions-dispatcher
hf spaces variables add "$SPACE_ID" -e HF_NAMESPACE=your-billing-namespace
hf spaces restart "$SPACE_ID"

The token you set in Step 2 should correspond to this namespace.

https://huggingface.co/blog/github-ci-hf-jobs#step-4-change-runs-onStep 4: Changeruns\-on

The actual workflow change is small. Instead of:

runs-on: ubuntu-latest

use one of the labels handled by the dispatcher:

runs-on: hf-jobs-cpu-upgrade

For GPU tests, use a GPU label:

runs-on: hf-jobs-t4-small

For any GitHub Action you’d like to run on HF Jobs, this 1-line change is all you need!

https://huggingface.co/blog/github-ci-hf-jobs#step-5-test-it-outStep 5: Test it out

To add a minimal smoke-test workflow from the CLI:

mkdir -p .github/workflows
cat > .github/workflows/hf-jobs-test.yml <<'EOF'
name: HF Jobs Test

on:
  pull_request:
  push:
    branches: [main]
  workflow_dispatch:

jobs:
  test:
    runs-on: hf-jobs-cpu-upgrade
    steps:
      - uses: actions/checkout@v4
      - run: echo "Hello from Hugging Face Jobs"
EOF

git add .github/workflows/hf-jobs-test.yml
git commit -m "Run CI on Hugging Face Jobs"
git push

To verify from the CLI:

gh run list --repo YOUR-GITHUB-ORG/YOUR-REPO --limit 5
hf jobs ps --namespace "$HF_NAMESPACE"
hf spaces logs "$SPACE_ID"

You should be able to see logs just like a regular GitHub Action—for example, in thisTrackio PR #565.

And that’s it!

Note on choosing the right Docker image

Our first CPU setup usedubuntu:22\.04and installed missing system packages during every run. That worked, but it was slower than it needed to be. GitHub’subuntu\-latestimage includes a lot of developer tooling by default; a bare Ubuntu image does not.

For Trackio, the UI tests need Playwright browsers, Node, ffmpeg, sqlite, git, and normal Linux build dependencies. Hugging Face Jobs supports using anyDocker image, so we switched to the Microsoft Playwright image, which worked well:

mcr.microsoft.com/playwright:v1.60.0-jammy

For GPU jobs, we used:

nvidia/cuda:12.4.0-runtime-ubuntu22.04

https://huggingface.co/blog/github-ci-hf-jobs#resultsResults

Here are the numbers from the Trackio CI:

Runner setupRuntimeCompared to GitHub averageGitHububuntu\-latestbaseline1m40sbaselineHF Jobs CPU, Playwright image1m10s``\-30s, about30%fasterHF Jobs GPU,t4\-smalllabel45sno GitHub-hosted GPU baseline The biggest win was GPU CI. The Trackio GPU check ran on HF Jobs and passed in45s, costing less than a cent at thet4\-smallrate for that duration.

The CPU result was also encouraging. With the right image, the Linux test job was faster than the GitHub-hosted baseline. That suggests HF Jobs can be a practical CI backend, especially for ML projects that need custom images or accelerators.

Logs were another pleasant surprise. GitHub Actions logs are useful, but the web UI can be heavy for large logs. HF Jobs logs are easy to fetch from the CLI:

hf jobs logs <job_id> > logs.txt

That makes them easy to inspect with local tools or coding agents. In our bridge, we also mirrored the GitHub Actions job log into the HF Job log, so either system had enough information to debug a run.

Finally, although we didn’t need them for Trackio’s CI, HF Jobs alsosupports mounting volumes, which can be very helpful if you need to load datasets or models from Hugging Face quickly as part of your CI.

Hopefully, this gives you all you need to try HF Jobs for running your GitHub Actions!

Similar Articles

Hugging Face Models on Foundry Managed Compute

Hugging Face Blog

Microsoft announced Foundry Managed Compute and Hugging Face models on Foundry, a curated catalog of open-weight models from Hugging Face that can be deployed with one click onto Microsoft's managed GPU platform, offering enterprise security, governance, and observability.

GitHub Actions for a Gleam monorepo

Lobsters Hottest

A developer shares their GitHub Actions setup for testing a Gleam monorepo with separate BEAM and JavaScript runtimes, using matrix strategies and strict formatting checks.