From 11d7a731ced774e83b5aa241576f8d06c9294210 Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Sun, 24 Mar 2024 11:16:02 +0100 Subject: [PATCH] changes checkout to git clone --- .gitea/workflows/interp_act.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/interp_act.yaml b/.gitea/workflows/interp_act.yaml index 933ae34..dc3b95f 100644 --- a/.gitea/workflows/interp_act.yaml +++ b/.gitea/workflows/interp_act.yaml @@ -1,22 +1,22 @@ name: Interp architectural test suite on: push jobs: - test and publish job: + Build and test interp backend: runs-on: ubuntu-latest container: image: git.minres.com/tooling/riscof_sail:latest steps: - name: Check out repository code - uses: actions/checkout@v4 + run: git clone --recursive https://actrunner@git.minres.com/TGFS/TGC-ISS.git - name: Build tgc-sim executable run: | - cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DWITH_ASMJIT=OFF -DWITH_TCC=OFF -DWITH_LLVM=OFF - cmake --build build -j24 + cmake -S TGC-ISS -B TGC-ISS/build -DCMAKE_BUILD_TYPE=Debug -DWITH_ASMJIT=OFF -DWITH_TCC=OFF -DWITH_LLVM=OFF + cmake --build TGC-ISS/build -j24 - name: Checkout TGC-COMPLIANCE run: git clone --recursive https://actrunner@git.minres.com/TGFS/TGC-COMPLIANCE.git - name: run tests - run: python TGC-COMPLIANCE/run_act.py -core TGC5C -sim build/dbt-rise-tgc/tgc-sim --dockerless --backend interp \ No newline at end of file + run: python TGC-COMPLIANCE/run_act.py -core TGC5C -sim TGC-ISS/build/dbt-rise-tgc/tgc-sim --dockerless --backend interp \ No newline at end of file