From f876a9a5b4e199bf765d3dc25e7ff65c1f74b221 Mon Sep 17 00:00:00 2001 From: Curve Date: Thu, 9 May 2024 23:15:37 +0200 Subject: [PATCH] refactor(ci): more x86 tests --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 00c84fa..7f68387 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,6 +13,7 @@ jobs: fail-fast: false matrix: language: ["cpp"] + arch: ["x86", "x64"] steps: - name: Checkout @@ -23,7 +24,7 @@ jobs: - name: Compile run: | - cmake -B build -Dlime_tests=ON + cmake -B build -Dlime_tests=ON -DCMAKE_GENERATOR_PLATFORM=${{ matrix.arch }} cmake --build build --config Debug - name: Run Tests @@ -57,6 +58,7 @@ jobs: fail-fast: false matrix: language: ["cpp"] + arch: ["Win32", "x64"] steps: - name: Checkout @@ -64,7 +66,7 @@ jobs: - name: Compile run: | - cmake -B build -Dlime_tests=ON -T ClangCL -A x64 + cmake -B build -Dlime_tests=ON -T ClangCL -A ${{ matrix.arch }} cmake --build build --config Debug - name: Run Tests