moves tests into single job
Run architectural test suite on backends / Build ISS and Setup TGC-COMPLIANCE (push) Has been cancelled
Details
Run architectural test suite on backends / Build ISS and Setup TGC-COMPLIANCE (push) Has been cancelled
Details
This commit is contained in:
parent
f21461e1ab
commit
cc23e02b89
|
@ -1,7 +1,7 @@
|
||||||
name: Run architectural test suite on backends
|
name: Run architectural test suite on backends
|
||||||
on: push
|
on: push
|
||||||
jobs:
|
jobs:
|
||||||
build_job:
|
build_and_test_job:
|
||||||
name: Build ISS and Setup TGC-COMPLIANCE
|
name: Build ISS and Setup TGC-COMPLIANCE
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
|
@ -22,43 +22,15 @@ jobs:
|
||||||
cmake -S TGC-ISS -B TGC-ISS/build -DCMAKE_BUILD_TYPE=Debug -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=OFF
|
cmake -S TGC-ISS -B TGC-ISS/build -DCMAKE_BUILD_TYPE=Debug -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=OFF
|
||||||
cmake --build TGC-ISS/build -j24
|
cmake --build TGC-ISS/build -j24
|
||||||
|
|
||||||
interp_job:
|
- name: Test interp backend
|
||||||
name: Test interp backend
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: build_job
|
|
||||||
container:
|
|
||||||
image: git.minres.com/tooling/riscof_sail:latest
|
|
||||||
steps:
|
|
||||||
- name: Run tests
|
|
||||||
run: python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim TGC-ISS/build/dbt-rise-tgc/tgc-sim -w interp --dockerless --backend interp
|
run: python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim TGC-ISS/build/dbt-rise-tgc/tgc-sim -w interp --dockerless --backend interp
|
||||||
|
|
||||||
llvm_job:
|
- name: Test llvm backend
|
||||||
name: Test llvm backend
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: build_job
|
|
||||||
container:
|
|
||||||
image: git.minres.com/tooling/riscof_sail:latest
|
|
||||||
steps:
|
|
||||||
- name: Run tests
|
|
||||||
run: echo "llvm takes too long to build, so it is skipped"
|
run: echo "llvm takes too long to build, so it is skipped"
|
||||||
##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
|
||||||
|
|
||||||
tcc_job:
|
- name: Test tcc backend
|
||||||
name: Test tcc backend
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: build_job
|
|
||||||
container:
|
|
||||||
image: git.minres.com/tooling/riscof_sail:latest
|
|
||||||
steps:
|
|
||||||
- name: Run tests
|
|
||||||
run: python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim TGC-ISS/build/dbt-rise-tgc/tgc-sim -w tcc --dockerless --backend tcc
|
run: python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim TGC-ISS/build/dbt-rise-tgc/tgc-sim -w tcc --dockerless --backend tcc
|
||||||
|
|
||||||
asmjit_job:
|
- name: Test asmjit backend
|
||||||
name: Test asmjit backend
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: build_job
|
|
||||||
container:
|
|
||||||
image: git.minres.com/tooling/riscof_sail:latest
|
|
||||||
steps:
|
|
||||||
- name: Run tests
|
|
||||||
run: python3 TGC-COMPLIANCE/run_act.py -core TGC5C -sim TGC-ISS/build/dbt-rise-tgc/tgc-sim -w asmjit --dockerless --backend asmjit
|
run: 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