2024-03-24 17:01:34 +01:00
|
|
|
name: Run architectural test suite on backends
|
2024-03-24 15:58:38 +01:00
|
|
|
on: push
|
|
|
|
jobs:
|
2024-03-24 17:05:50 +01:00
|
|
|
build_job:
|
2024-03-24 17:01:34 +01:00
|
|
|
name: Build ISS and Setup TGC-COMPLIANCE
|
2024-03-24 15:58:38 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: git.minres.com/tooling/riscof_sail:latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
run: git clone --recursive -b ${{gitea.ref_name}} https://git.minres.com/TGFS/TGC-ISS.git
|
2024-03-24 17:01:34 +01:00
|
|
|
|
2024-03-24 15:58:38 +01:00
|
|
|
- name: Checkout TGC-COMPLIANCE
|
|
|
|
run: |
|
|
|
|
echo "${{ secrets.ACTRUNNER_PRIVATE_SSHKEY }}" > ssh_key
|
|
|
|
chmod 600 ssh_key
|
|
|
|
git clone --recursive -c core.sshCommand="/usr/bin/ssh -i ssh_key -o StrictHostKeyChecking=accept-new" ssh://git@git.minres.com:2221/TGFS/TGC-COMPLIANCE.git
|
2024-03-24 17:01:34 +01:00
|
|
|
|
2024-03-24 15:58:38 +01:00
|
|
|
- name: Build tgc-sim executable
|
|
|
|
run: |
|
|
|
|
cmake -S TGC-ISS -B TGC-ISS/build -DCMAKE_BUILD_TYPE=Debug -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=ON
|
|
|
|
cmake --build TGC-ISS/build -j24
|
2024-03-24 17:01:34 +01:00
|
|
|
interp_job:
|
|
|
|
name: Test interp backend
|
2024-03-24 16:02:00 +01:00
|
|
|
runs-on: ubuntu-latest
|
2024-03-24 17:01:34 +01:00
|
|
|
needs: build_job
|
2024-03-24 16:02:00 +01:00
|
|
|
container:
|
|
|
|
image: git.minres.com/tooling/riscof_sail:latest
|
|
|
|
steps:
|
2024-03-24 17:01:34 +01:00
|
|
|
- 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
|
|
|
|
llvm_job:
|
|
|
|
name: Test llvm backend
|
2024-03-24 16:02:00 +01:00
|
|
|
runs-on: ubuntu-latest
|
2024-03-24 17:01:34 +01:00
|
|
|
needs: build_job
|
2024-03-24 16:02:00 +01:00
|
|
|
container:
|
|
|
|
image: git.minres.com/tooling/riscof_sail:latest
|
|
|
|
steps:
|
2024-03-24 17:01:34 +01:00
|
|
|
- name: Run tests
|
|
|
|
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
|
2024-03-24 16:02:00 +01:00
|
|
|
runs-on: ubuntu-latest
|
2024-03-24 17:01:34 +01:00
|
|
|
needs: build_job
|
2024-03-24 16:02:00 +01:00
|
|
|
container:
|
|
|
|
image: git.minres.com/tooling/riscof_sail:latest
|
|
|
|
steps:
|
2024-03-24 17:01:34 +01:00
|
|
|
- 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
|
|
|
|
asmjit_job:
|
|
|
|
name: Test asmjit backend
|
2024-03-24 16:02:00 +01:00
|
|
|
runs-on: ubuntu-latest
|
2024-03-24 17:01:34 +01:00
|
|
|
needs: build_job
|
2024-03-24 16:02:00 +01:00
|
|
|
container:
|
|
|
|
image: git.minres.com/tooling/riscof_sail:latest
|
|
|
|
steps:
|
2024-03-24 17:01:34 +01:00
|
|
|
- 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
|