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
|
image: git.minres.com/tooling/riscof_sail:latest
|
||||||
volumes:
|
volumes:
|
||||||
- act-runtime:/mnt/act-runtime
|
- act-runtime:/mnt/act-runtime
|
||||||
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository code
|
- name: Checkout repository code
|
||||||
run: git clone --recursive -b ${{gitea.ref_name}} https://git.minres.com/TGFS/TGC-ISS.git
|
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
|
cmake --build TGC-ISS/build -j24
|
||||||
|
|
||||||
- name: Test interp backend
|
- name: Test interp backend
|
||||||
continue-on-error: true
|
|
||||||
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
|
|
||||||
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"
|
||||||
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
|
##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
|
- name: Test tcc backend
|
||||||
continue-on-error: true
|
|
||||||
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
|
|
||||||
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
|
Loading…
Reference in New Issue