diff --git a/example/.fluentci/src/dagger/jobs.ts b/example/.fluentci/src/dagger/jobs.ts index 22a8bec..83183c8 100644 --- a/example/.fluentci/src/dagger/jobs.ts +++ b/example/.fluentci/src/dagger/jobs.ts @@ -28,7 +28,7 @@ export const clippy = async (src: string | Directory | undefined = ".") => { await connect(async (client: Client) => { const context = getDirectory(client, src); const ctr = client - .pipeline(Job.test) + .pipeline(Job.clippy) .container() .from("rust:1.73-bookworm") .withExec(["apt-get", "update"]) @@ -62,7 +62,7 @@ export const llvmCov = async (src: string | Directory | undefined = ".") => { await connect(async (client: Client) => { const context = getDirectory(client, src); const ctr = client - .pipeline(Job.test) + .pipeline(Job.llvmCov) .container() .from("rust:1.73-bookworm") .withExec(["apt-get", "update"])