From 10467047f819df463e84b852746f7561bf51d2cf Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Wed, 22 Nov 2023 12:44:15 +0000 Subject: [PATCH] [example] update .fluentci --- example/.fluentci/src/dagger/jobs.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"])