Skip to content

Commit

Permalink
Switch to assertions rather than debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ihnorton committed Sep 12, 2023
1 parent 81701fc commit c13875a
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/nightly-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
include:
- os: windows-latest
config: "Debug"
assertions: "ON"
fail-fast: false

name: |
Expand Down Expand Up @@ -45,17 +45,8 @@ jobs:
- name: Configure TileDB CMake (Windows)
if: contains(matrix.os, 'windows')
env:
S3_ARG: ${{ matrix.s3 || 'ON' }}
run: |
# Free up some disk space
rm -r -fo "C:/Android/*.*"
rm -r -fo "C:/hostedtoolcache/windows/PyPy"
rm -r -fo "C:/msys64/*.*"
rm -r -fo "C:/hostedtoolcache/windows/Java_Temurin-Hotspot_jdk/"
rm -r -fo "C:/Program Files/LLVM"
# Disable S3 due to space constraints
cmake -B build -DTILEDB_WERROR=ON -DTILEDB_S3=$env:S3_ARG -DTILEDB_SERIALIZATION=ON -DCMAKE_BUILD_TYPE=${{ matrix.config || 'Release' }}
cmake -B build -DTILEDB_WERROR=ON -DTILEDB_SERIALIZATION=ON -DCMAKE_BUILD_TYPE=${{ matrix.config || 'Release' }} -DTILEDB_ASSERTIONS=${{ matrix.assertions || 'OFF' }}
- name: Build TileDB
run: |
Expand Down

0 comments on commit c13875a

Please sign in to comment.