Skip to content

Commit

Permalink
Run unit test for both debug and release for x86 and x64
Browse files Browse the repository at this point in the history
  • Loading branch information
SinghRajenM committed Nov 2, 2024
1 parent 6736af3 commit ac0ebfc
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,11 @@ jobs:
name: NppJSONViewer_${{ matrix.build_platform}}_${{ matrix.build_configuration}}_pdb
path: src\Build\Bin\${{ matrix.build_configuration}}\${{ matrix.build_platform}}\NPPJSONViewer.pdb

# Step 6: Run unit tests for x86 | Release
- name: Run unit tests x86 | Release
if: matrix.build_platform == 'Win32' && matrix.build_configuration == 'Release'
# Step 6: Run unit tests for x86 and x64
- name: Run unit tests
if: matrix.build_platform == 'Win32' || matrix.build_platform == 'x64'
run: |
cd src\Build\Bin\Release\Win32
./UnitTest.exe
# Step 7: Run unit tests for x64 | Release
- name: Run unit tests x64 | Release
if: matrix.build_platform == 'x64' && matrix.build_configuration == 'Release'
run: |
cd src\Build\Bin\Release\x64
cd src\Build\Bin\${{ matrix.build_configuration }}\${{ matrix.build_platform }}
./UnitTest.exe
upload-full-artifacts:
Expand Down

0 comments on commit ac0ebfc

Please sign in to comment.