Skip to content

Update h3client version and lip package version to 0.12.6 and 0.5.4 r… #12

Update h3client version and lip package version to 0.12.6 and 0.5.4 r…

Update h3client version and lip package version to 0.12.6 and 0.5.4 r… #12

Workflow file for this run

name: Test h3client
on:
push:
branches:
- "**"
paths:
- h3client/**
- .github/workflows/test-h3client.yml
defaults:
run:
working-directory: h3client
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
build_type: [Release, Debug]
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DUSE_SANITIZER='Address;Undefined'
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}}
- name: Test
working-directory: ${{github.workspace}}/build
run: ASAN_OPTIONS=allocator_may_return_null=1 ctest -C ${{matrix.build_type}} --rerun-failed --output-on-failure