Skip to content

Commit

Permalink
Disable debug
Browse files Browse the repository at this point in the history
  • Loading branch information
infogulch committed Jul 4, 2024
1 parent 4b11e7c commit 914821e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- run: CUE_DEBUG_TOOLS_FLOW=true cue cmd ci
# CUE_DEBUG_TOOLS_FLOW=true cue cmd ci
- run: cue cmd ci

- uses: actions/upload-artifact@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions make_tool.cue
Original file line number Diff line number Diff line change
Expand Up @@ -177,17 +177,17 @@ command: run_test: {

run: task.run & {"vars": cfg.vars, start: mustSucceed: false}
test: task.test & {"vars": cfg.vars, hurl: $after: run.ready.$done}
kill: exec.Run & {cmd: "pkill xtemplate", $after: test.hurl.$done} // better way?
kill: exec.Run & {cmd: "pkill xtemplate", $after: test.hurl.$done}
}

command: ci: {
cfg: meta

gotest: task.gotest & {"vars": cfg.vars}

run: task.run & {"vars": cfg.vars, start: mustSucceed: false}
run: task.run & {"vars": cfg.vars, start: mustSucceed: false} // it's killed so it will never succeed
test: task.test & {"vars": cfg.vars, hurl: $after: run.ready.$done}
kill: exec.Run & {cmd: "pkill xtemplate", $after: test.hurl.$done} // better way?
kill: exec.Run & {cmd: "pkill xtemplate", $after: test.hurl.$done} // is there a better way?

dist: task.dist & {"vars": cfg.vars, rmdist: $after: kill.$done}

Expand Down

0 comments on commit 914821e

Please sign in to comment.