Skip to content

Commit

Permalink
use fluentci-io images
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Oct 22, 2023
1 parent 4432c47 commit 8967bb1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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 @@ -22,7 +22,7 @@ export const build = async (src = ".", version?: string) => {
const ctr = client
.pipeline(Job.build)
.container()
.from("ghcr.io/fluent-ci-templates/bazel:latest")
.from("ghcr.io/fluentci-io/bazel:latest")
.withMountedCache("/root/.cache/bazel", client.cacheVolume("bazel-cache"))
.withEnvVariable("BAZEL_VERSION", BAZEL_VERSION)
.withDirectory("/app", context, {
Expand All @@ -49,7 +49,7 @@ export const test = async (src = ".", version?: string) => {
const ctr = client
.pipeline(Job.test)
.container()
.from("ghcr.io/fluent-ci-templates/bazel:latest")
.from("ghcr.io/fluentci-io/bazel:latest")
.withMountedCache("/root/.cache/bazel", client.cacheVolume("bazel-cache"))
.withEnvVariable("BAZEL_VERSION", BAZEL_VERSION)
.withDirectory("/app", context, { exclude })
Expand Down
4 changes: 2 additions & 2 deletions src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const build = async (src = ".", version?: string) => {
const ctr = client
.pipeline(Job.build)
.container()
.from("ghcr.io/fluent-ci-templates/bazel:latest")
.from("ghcr.io/fluentci-io/bazel:latest")
.withMountedCache("/root/.cache/bazel", client.cacheVolume("bazel-cache"))
.withEnvVariable("BAZEL_VERSION", BAZEL_VERSION)
.withDirectory("/app", context, {
Expand All @@ -49,7 +49,7 @@ export const test = async (src = ".", version?: string) => {
const ctr = client
.pipeline(Job.test)
.container()
.from("ghcr.io/fluent-ci-templates/bazel:latest")
.from("ghcr.io/fluentci-io/bazel:latest")
.withMountedCache("/root/.cache/bazel", client.cacheVolume("bazel-cache"))
.withEnvVariable("BAZEL_VERSION", BAZEL_VERSION)
.withDirectory("/app", context, { exclude })
Expand Down

0 comments on commit 8967bb1

Please sign in to comment.