Skip to content

Commit

Permalink
Revert "fix: added ASAN_OPTIONS continue_on_error=1 to environment va…
Browse files Browse the repository at this point in the history
…riables"

This reverts commit 0f94a19.
  • Loading branch information
thobbsinteractive committed Aug 4, 2024
1 parent cede786 commit 4d45e51
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .
ASAN_OPTIONS: continue_on_error=1

jobs:
build:
Expand Down Expand Up @@ -43,12 +42,16 @@ jobs:
- name: Run Unit Tests x86
if: ${{ matrix.BUILD_CONFIGURATION == 'Debug' && matrix.BUILD_PLATFORM == 'x86' }}
working-directory: ${{env.GITHUB_WORKSPACE}}
run: ${{env.SOLUTION_FILE_PATH}}/${{matrix.BUILD_CONFIGURATION}}/remc2-unit-test.exe
run: |
set ASAN_OPTIONS=continue_on_error=1
${{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: ${{env.SOLUTION_FILE_PATH}}/${{matrix.BUILD_PLATFORM}}/${{matrix.BUILD_CONFIGURATION}}/remc2-unit-test.exe
run: |
set ASAN_OPTIONS=continue_on_error=1
${{env.SOLUTION_FILE_PATH}}/${{matrix.BUILD_PLATFORM}}/${{matrix.BUILD_CONFIGURATION}}/remc2-unit-test.exe
- name: Archive x86
if: ${{ github.REF_NAME == 'master' && matrix.BUILD_CONFIGURATION == 'Release' && matrix.BUILD_PLATFORM == 'x86' }}
Expand Down

0 comments on commit 4d45e51

Please sign in to comment.