From a833c5821344c1477a56685f3040bfd600d0d70d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Tue, 4 Jun 2024 21:49:51 +0200 Subject: [PATCH] Tentative run tests in CI. --- .github/workflows/build.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0105dfe..859d632 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,8 +67,10 @@ jobs: name: usvfs-tests_${{ matrix.arch }} path: ./test/bin + # merge x86 / x64 artifacts merge-artifacts: runs-on: ubuntu-latest + name: Merge Artifacts for Tests needs: build steps: - name: Merge USVFS libs @@ -86,6 +88,9 @@ jobs: name: Test USVFS needs: merge-artifacts runs-on: windows-2022 + strategy: + matrix: + arch: [x86, x64] steps: - uses: actions/checkout@v4 - uses: actions/download-artifact@master @@ -96,5 +101,10 @@ jobs: with: name: usvfs-tests path: ./test/bin - - run: Get-ChildItem lib - - run: Get-ChildItem test/bin + - run: | + ./test/bin/shared_test_${{ matrix.arch }}.exe + ./test/bin/testinject_bin_${{ matrix.arch }}.exe + ./test/bin/thooklib_test_${{ matrix.arch }}.exe + ./test/bin/tinjectlib_test_${{ matrix.arch }}.exe + ./test/bin/tvfs_test_${{ matrix.arch }}.exe + ./test/bin/usvfs_test_runner_${{ matrix.arch }}.exe