adds different approach to indicate failure
Run architectural test suite on backends / Build ISS, Setup TGC-COMPLIANCE, Run tests on backends (push) Successful in 6m41s
Details
Run architectural test suite on backends / Build ISS, Setup TGC-COMPLIANCE, Run tests on backends (push) Successful in 6m41s
Details
This commit is contained in:
parent
646452e0ea
commit
bdb7cbd36d
|
@ -28,12 +28,14 @@ jobs:
|
||||||
|
|
||||||
- name: Test interp backend
|
- name: Test interp backend
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
id: interp
|
||||||
run: |
|
run: |
|
||||||
mkdir interp
|
mkdir interp
|
||||||
python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim TGC-ISS/build/dbt-rise-tgc/tgc-sim -w interp --dockerless --backend interp
|
python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim TGC-ISS/build/dbt-rise-tgc/tgc-sim -w interp --dockerless --backend interp
|
||||||
|
|
||||||
- name: Test llvm backend
|
- name: Test llvm backend
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
id: llvm
|
||||||
run: |
|
run: |
|
||||||
mkdir llvm
|
mkdir llvm
|
||||||
echo "llvm takes too long to build, so it is skipped"
|
echo "llvm takes too long to build, so it is skipped"
|
||||||
|
@ -42,15 +44,17 @@ jobs:
|
||||||
|
|
||||||
- name: Test tcc backend
|
- name: Test tcc backend
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
id: tcc
|
||||||
run: |
|
run: |
|
||||||
mkdir tcc
|
mkdir tcc
|
||||||
python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim TGC-ISS/build/dbt-rise-tgc/tgc-sim -w tcc --dockerless --backend tcc
|
python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim TGC-ISS/build/dbt-rise-tgc/tgc-sim -w tcc --dockerless --backend tcc
|
||||||
|
|
||||||
- name: Test asmjit backend
|
- name: Test asmjit backend
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
id: asmjit
|
||||||
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
|
- name: Indicate Failure
|
||||||
if: ${{ failure() }}
|
if: ${{ steps.interp.conclusion == 'failure' || steps.llvm.conclusion == 'failure' || steps.tcc.conclusion == 'failure' || steps.asmjit.conclusion == 'failure'}}
|
||||||
run: exit 1
|
run: exit 1
|
Loading…
Reference in New Issue