Skip to content

Commit

Permalink
[example] update .fluentci
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Nov 22, 2023
1 parent 4bd49b2 commit 1046704
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/.fluentci/src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"])
Expand Down Expand Up @@ -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"])
Expand Down

0 comments on commit 1046704

Please sign in to comment.