Skip to content

Commit

Permalink
update example
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Oct 26, 2023
1 parent 65c634a commit 9166c79
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/zenith.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Zenith Example
on:
push:
branches:
- zenith
- main

jobs:
tests:
Expand Down
14 changes: 3 additions & 11 deletions example/.fluentci/src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,9 @@ export const execLane = async (name: string, src = ".") => {

const ctr = withEnv(withSrc(baseCtr, client, context))
.withEnvVariable("NODE_OPTIONS", "--max-old-space-size=4096")
.withExec(["sh", "-c", 'eval "$(devbox global shellenv)" && bun install'])
.withExec([
"sh",
"-c",
'eval "$(devbox global shellenv)" && bundle install',
])
.withExec([
"sh",
"-c",
`eval "$(devbox global shellenv)" && bundle exec fastlane android ${name}`,
]);
.withExec(["bun", "install"])
.withExec(["bundle", "install"])
.withExec(["bundle", "exec", "fastlane", "android", name]);

const result = await ctr.stdout();

Expand Down

0 comments on commit 9166c79

Please sign in to comment.