From b347393ff62b586210b9c87e5bf5ae76b356932f Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Mon, 22 Apr 2024 20:09:32 +0200 Subject: [PATCH] adds yet another approach --- .gitea/workflows/run_act.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/run_act.yaml b/.gitea/workflows/run_act.yaml index 8ff9328..df78f9f 100644 --- a/.gitea/workflows/run_act.yaml +++ b/.gitea/workflows/run_act.yaml @@ -56,5 +56,9 @@ jobs: 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 - if: ${{ steps.interp.conclusion == 'failure' || steps.llvm.conclusion == 'failure' || steps.tcc.conclusion == 'failure' || steps.asmjit.conclusion == 'failure'}} + if: | + failure() && steps.interp.conclusion == 'failure' || + failure() && steps.llvm.conclusion == 'failure' || + failure() && steps.tcc.conclusion == 'failure' || + failure() && steps.asmjit.conclusion == 'failure' run: exit 1 \ No newline at end of file