Skip to content

Commit

Permalink
Re-enable sanitizers to see if they fix Windows hangs
Browse files Browse the repository at this point in the history
  • Loading branch information
bifurcation committed Dec 14, 2023
1 parent 60b54a4 commit f722f0c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
crypto: [openssl_1.1, openssl_3, boringssl]
os: [windows-latest] # XXX, ubuntu-latest, macos-latest]
crypto: [openssl_1.1] # XXX, openssl_3, boringssl]

env:
BUILD_DIR: "${RUNNER_TEMP}/build_${{ matrix.crypto }}"
Expand All @@ -55,7 +55,7 @@ jobs:

- name: Build
run: |
cmake -B "${{ env.BUILD_DIR }}" -DVCPKG_MANIFEST_DIR="${{ env.CRYPTO_DIR }}" -DTESTING=ON
cmake -B "${{ env.BUILD_DIR }}" -DVCPKG_MANIFEST_DIR="${{ env.CRYPTO_DIR }}" -DTESTING=ON -DSANITIZERS=ON
cmake --build "${{ env.BUILD_DIR }}"
- name: Unit Test (non-Windows)
Expand Down

0 comments on commit f722f0c

Please sign in to comment.