Skip to content

Commit

Permalink
Tentative run tests in CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
Holt59 committed Jun 4, 2024
1 parent b32b5aa commit a833c58
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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

0 comments on commit a833c58

Please sign in to comment.