From f9c5411bc4e5bcc4076a0197eb1c12c41c4243ae Mon Sep 17 00:00:00 2001 From: a-hamitouche Date: Mon, 5 Feb 2024 22:21:50 +0100 Subject: [PATCH] feat: updating submodules for the workflow --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3943e4..aea4946 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,12 +23,16 @@ jobs: run: python -m pip install Jinja2 - name: Installing pytest run: python -m pip install pytest + - name: Update submodules (Linux) + run: | + git submodules update --init + git submules foreach 'git checkout main' - name: Running cmake (Linux) run: | ls ${{github.workspace}} mkdir build cd build - cmake -DCMAKE_BUILD_TYPE=Debug .. + cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_FMA_INTRINSIC=1 .. - name: Build Solution (Linux) run: | cd build