DEV Community

Cover image for test everywhere with dagger.io
Matteo
Matteo

Posted on • Originally published at matteogassend.com

test everywhere with dagger.io

Have you ever had to implement a CI/CD pipeline and then proceed to push to a repository 10/20 times just to see if the pipeline works correctly? Well, this ends today!

Dagger (not the stabby kind)

Dagger's tagline is

CI/CD as Code that Runs Anywhere

It is a way for developers to create pipelines that run everywhere, be it locally, as Github Actions or anywhere where you can spawn containers; it is what I use to do a test build on magiedit and what I'll use when I eventually write unit tests (it'll come one day, I promise.)

How do you use it?

Dagger provides different sdks (for Javascript, Python, Go etc) and they also have an HTTP and GraphQL api, so you can use with whatever coding language you prefer. Then you just run it wherever your pipelines run.

Creating a Pipeline

In this article I'll be using the Javascript sdk, because that is the one I know better (and because it is my article, after all). We'll be looking at how to create a simple pipeline script with some extra configuration like setting some env variables.

Prerequisites

Container engine

Dagger requires a container engine for it run wherever it needs to run (at this stage, at least, locally); the recommended one is Docker (I have an article on the basics of Docker here), but other runtimes are compatible (podman, containerd etc): here's an article detailing how to use them, though I would still recommend Docker.

Install Dagger CLI

You can find the installation instructions here, but the gist is (for Linux / WSL) to execute this line:

cd /usr/local
curl -L https://dl.dagger.io/dagger/install.sh | sh
Enter fullscreen mode Exit fullscreen mode

Install Dagger SDK

For this example I'll be using the NodeJS sdk which you can install like this:

npm install @dagger.io/dagger --save-dev
Enter fullscreen mode Exit fullscreen mode

Writing the actual pipeline

The main thing to do is import the connect function from the Dagger sdk, because everything will happen in there:

import { connect } from '@dagger.io/dagger';
Enter fullscreen mode Exit fullscreen mode

Once we call this function, we can pass it a callback that gets as its argument the client instance; this is what we will use to define our pipeline:

connect(
    async (client) => {
    },
    { LogOutput: process.stdout }
);
Enter fullscreen mode Exit fullscreen mode

As you can see from the snippet above, you can also specify where the output logs will be sent; in this case, the standard output is good enough, but you could also sent them to a file that could, for example, be uploaded as an artifact for the pipeline run.

Then you can declare a runner with a base image and run all the commands you need with it;

        const node = await client
            .container()
            .from('node:18')
            .withDirectory('/app', client.host().directory('.'), {
                exclude: ['node_modules', 'ci']
            })
        const runner = node.withWorkdir('/app').withExec(['npm', 'install']);
Enter fullscreen mode Exit fullscreen mode

In the above snippet, we declare a container based on node 18 and we copy the contents of the current directory (excluding the folders called node_modules and ci), then set the working directory to /app (the directory we copied our project to) and execute npm install inside it.

The Walking Dead Easy Peasy GIF

Now, how about running a build script and getting the error output (if any)? Simple, we just continue adding calls to our connect callback:

await runner
    .withExec(['npm', 'run', 'build'])
    .stderr();
Enter fullscreen mode Exit fullscreen mode

Running the pipeline

To run pipeline, you simply execute it like any other NodeJS script; assuming you have saved your script as build.mjs in a ci folder, you can just run:

node ci/build.mjs
Enter fullscreen mode Exit fullscreen mode

Weird Al GIF by The Roku Channel

And that's how you can create and run a basic pipeline; note that you can create multi-stage builds, publish images, using existing Dockerfiles and much more!

Bonus Round: Github Actions

Running a Dagger pipeline in Github Actions is pretty straightforward; you need to setup your environment to be able to run Dagger, which means basically installing nodejs js and installing dependencies:

name: build
on:
  push:
    branches:
      - master
      - feature/*

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: pnpm/action-setup@v2
        with:
          version: 8
      - uses: actions/setup-node@v3
        with:
          node-version: 18
      - name: Install dependencies
        run: pnpm install
      - name: Build
        run: node ci/build.mjs
Enter fullscreen mode Exit fullscreen mode

In this example, I'm using pnpm to install my dependencies, and then simply execute the pipeline.

If you want to learn more about Dagger, check out their website; they have some very nice real case articles on how to use Dagger to build more complex pipelines.

Top comments (0)