Skip to content

Commit

Permalink
fix: try setting asan options in environment
Browse files Browse the repository at this point in the history
  • Loading branch information
thobbsinteractive committed Aug 4, 2024
1 parent 829a544 commit d7ed36a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,17 @@ jobs:
- name: Run Unit Tests x86
if: ${{ matrix.BUILD_CONFIGURATION == 'Debug' && matrix.BUILD_PLATFORM == 'x86' }}
working-directory: ${{env.GITHUB_WORKSPACE}}
run: |
set ASAN_OPTIONS=continue_on_error=1
env:
ASAN_OPTIONS: continue_on_error=1
run:
${{env.SOLUTION_FILE_PATH}}/${{matrix.BUILD_CONFIGURATION}}/remc2-unit-test.exe

- name: Run Unit Tests x64
if: ${{ matrix.BUILD_CONFIGURATION == 'Debug' && matrix.BUILD_PLATFORM == 'x64' }}
working-directory: ${{env.GITHUB_WORKSPACE}}
run: |
set ASAN_OPTIONS=continue_on_error=1
env:
ASAN_OPTIONS: continue_on_error=1
run:
${{env.SOLUTION_FILE_PATH}}/${{matrix.BUILD_PLATFORM}}/${{matrix.BUILD_CONFIGURATION}}/remc2-unit-test.exe

- name: Archive x86
Expand Down

0 comments on commit d7ed36a

Please sign in to comment.