Justin Chadwell

Results 120 issues of Justin Chadwell

Reproduced in v0.9.8. Given a very simple go module: ```go package main type Playground struct{} func (m *Playground) Alpine() *Container { return dag.Container().From("alpine:latest") } ``` Using `dagger call` without a...

kind/bug
area/engine

This is part of a piece of a more general piece of work to improve our own releasing process. TL;DR: our releasing process (defined in https://github.com/dagger/dagger/blob/main/RELEASING.md) has steadily become more...

After applying #7904, we've seen jobs hang weirdly. See an example: - https://github.com/dagger/dagger/actions/runs/9970573229/job/27549768418?pr=7936#step:3:89 - https://dagger.cloud/dagger/traces/6573dc5045a64c4d4e20b7e8b521b76a Side note: somehow, I did reproduce locally, not sure how, I can't get it to...

Context locks were introduced (in #7272) as a way to prevent needless switching between two spans: e.g. suppose that span A and span B were running at the same time...

Currently, all releases are tagged using semantic versioning - e.g. `v0.11.9`, the latest release. This tag is builtin to the resulting CLI and Engine binaries, and is used (among other...

area/engine

These were previously able to overlap / end multiple times, which is confusing. This was introduced in #7881 in v0.12.0. Maybe this isn't the cause of *all* the weird failures...

:cherries: Cherry-picked out of #7438, since that one is kinda stalled, not really sure what to do with it. In the process of the above PR, I'd attempted to add...

Using `platformVariants` is extremely unwieldy to use: https://github.com/dagger/dagger/blob/fca9e788f6d605ef9d256beace4656c11d7f6fe5/docs/docs-graphql/schema.graphqls#L196-L201 The idea is that you can construct multiple `Container` objects, and then compose them to together on `Publish`/`Export` to push a multi-platform...

Spun out from this discord discussion: https://discord.com/channels/707636530424053791/1253636253358755840/1253636253358755840 It's currently quite difficult to write a healthcheck for the dagger engine itself - how do you know if it's running, and ready...

area/engine
area/engine/api

As brought up in #2132, it would be nice to allow multi-line strings in `ARG`s, `ENV`s, `LABEL`s, etc in Dockerfiles. One possible suggestion, using the new heredoc parser and syntax...

kind/enhancement
area/dockerfile