working on more solutions
This commit is contained in:
parent
3d216107d9
commit
e03001dd91
|
@ -55,7 +55,17 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
mkdir asmjit
|
mkdir asmjit
|
||||||
python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim TGC-ISS/build/dbt-rise-tgc/tgc-sim -w asmjit --dockerless --backend 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
|
- name: Indicate Failure 2
|
||||||
if: ${{ failure() }}
|
if: ${{ failure() }}
|
||||||
run: exit 1
|
run: echo "Failure detected"
|
||||||
|
|
||||||
|
- name: Indicate Failure 3
|
||||||
|
if: steps.tcc.outcome != 'success'
|
||||||
|
run: echo "Failure detected"
|
Loading…
Reference in New Issue