From e03001dd91415e08d5e127fed700ded7ca82b0c9 Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Mon, 22 Apr 2024 20:36:03 +0200 Subject: [PATCH] working on more solutions --- .gitea/workflows/run_act.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/run_act.yaml b/.gitea/workflows/run_act.yaml index bc80dd1..1861c46 100644 --- a/.gitea/workflows/run_act.yaml +++ b/.gitea/workflows/run_act.yaml @@ -55,7 +55,17 @@ jobs: run: | mkdir asmjit python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim TGC-ISS/build/dbt-rise-tgc/tgc-sim -w asmjit --dockerless --backend asmjit - + + - name: Indicate Failure + run: | + echo ${{ failure() }} + echo "Failure detected" + exit ${{ failure() }} + - name: Indicate Failure 2 if: ${{ failure() }} - run: exit 1 + run: echo "Failure detected" + + - name: Indicate Failure 3 + if: steps.tcc.outcome != 'success' + run: echo "Failure detected" \ No newline at end of file