fixes typo, moves continue on error
Run architectural test suite on backends / Build ISS, Setup TGC-COMPLIANCE, Run tests on backends (push) Failing after 5m20s
Details
Run architectural test suite on backends / Build ISS, Setup TGC-COMPLIANCE, Run tests on backends (push) Failing after 5m20s
Details
This commit is contained in:
parent
bd30872ed3
commit
7b6c0291b2
|
@ -8,6 +8,7 @@ jobs:
|
|||
image: git.minres.com/tooling/riscof_sail:latest
|
||||
volumes:
|
||||
- act-runtime:/mnt/act-runtime
|
||||
continue-on-error: true
|
||||
steps:
|
||||
- name: Checkout repository code
|
||||
run: git clone --recursive -b ${{gitea.ref_name}} https://git.minres.com/TGFS/TGC-ISS.git
|
||||
|
@ -26,27 +27,23 @@ jobs:
|
|||
cmake --build TGC-ISS/build -j24
|
||||
|
||||
- name: Test interp backend
|
||||
continue-on-error: true
|
||||
run: |
|
||||
mkdir 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
|
||||
continue-on-error: true
|
||||
run: |
|
||||
mkdir llvm
|
||||
echo "llvm takes too long to build, so it is skipped"
|
||||
run: exit 1
|
||||
exit 1
|
||||
##run: python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim TGC-ISS/build/dbt-rise-tgc/tgc-sim -w llvm --dockerless --backend llvm
|
||||
|
||||
- name: Test tcc backend
|
||||
continue-on-error: true
|
||||
run: |
|
||||
mkdir 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
|
||||
continue-on-error: true
|
||||
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
|
Loading…
Reference in New Issue