From 914821e9b954611c3ae327d47e6e6a0b9589df7a Mon Sep 17 00:00:00 2001 From: infogulch Date: Thu, 4 Jul 2024 17:12:19 -0500 Subject: [PATCH] Disable debug --- .github/workflows/ci.yaml | 3 ++- make_tool.cue | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8790abf..227ece3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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: diff --git a/make_tool.cue b/make_tool.cue index f362a9f..33981b1 100644 --- a/make_tool.cue +++ b/make_tool.cue @@ -177,7 +177,7 @@ 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: { @@ -185,9 +185,9 @@ command: ci: { 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}