Skip to content

Commit

Permalink
fix(ci): install shasum
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Oct 31, 2023
1 parent 8bf4676 commit 05d4333
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .fluentci/src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ const baseCtr = (client: Client, pipeline: string) => {
.withMountedCache("/etc/nix", client.cacheVolume("nix-etc"))
);
}
return client.pipeline(pipeline).container().from("denoland/deno:alpine");
return client
.pipeline(pipeline)
.container()
.from("denoland/deno:alpine")
.withExec(["apk", "update"])
.withExec(["apk", "add", "perl-utils"]);
};

export const lint = async (src = ".") => {
Expand Down

0 comments on commit 05d4333

Please sign in to comment.