Skip to content

Commit

Permalink
ci: Re-enable Debug.sanitize on Windows (#1406)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimDeve committed Mar 29, 2022
1 parent bf6df64 commit fe91fb8
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
- name: Install Stack
run: scoop install stack

- name: Install LLVM
run: |
scoop install llvm
echo "C:\Users\runneradmin\scoop\apps\llvm\current\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- uses: actions/cache@v1
name: Cache stack dependencies
with:
Expand All @@ -44,12 +49,6 @@ jobs:
- name: Run Compiler Tests
run: stack test

# Disabling sanitize-addresses because it fails with following error:
# https://github.com/actions/virtual-environments/issues/4978
- name: Disable Debug.sanitize-addresses
shell: bash
run: find ./test ./examples -type f -name '*.carp' | xargs sed 's/^\((Debug.sanitize-addresses)\)/; \1/g' -i

- name: Run Carp Tests
shell: bash
run: ./scripts/run_carp_tests.sh --no_sdl

0 comments on commit fe91fb8

Please sign in to comment.