Skip to content

Commit fe91fb8

Browse files
authored
ci: Re-enable Debug.sanitize on Windows (#1406)
1 parent bf6df64 commit fe91fb8

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/windows.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424
- name: Install Stack
2525
run: scoop install stack
2626

27+
- name: Install LLVM
28+
run: |
29+
scoop install llvm
30+
echo "C:\Users\runneradmin\scoop\apps\llvm\current\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
31+
2732
- uses: actions/cache@v1
2833
name: Cache stack dependencies
2934
with:
@@ -44,12 +49,6 @@ jobs:
4449
- name: Run Compiler Tests
4550
run: stack test
4651

47-
# Disabling sanitize-addresses because it fails with following error:
48-
# https://github.com/actions/virtual-environments/issues/4978
49-
- name: Disable Debug.sanitize-addresses
50-
shell: bash
51-
run: find ./test ./examples -type f -name '*.carp' | xargs sed 's/^\((Debug.sanitize-addresses)\)/; \1/g' -i
52-
5352
- name: Run Carp Tests
5453
shell: bash
5554
run: ./scripts/run_carp_tests.sh --no_sdl

0 commit comments

Comments
 (0)