Skip to content

Variable length key support. #2160

Variable length key support.

Variable length key support. #2160

---
name: experimental-build
on:
push:
branches:
- master
pull_request:
permissions: {}
jobs:
build:
runs-on: macos-latest
env:
BUILD_TYPE: ${{matrix.BUILD_TYPE}}
strategy:
fail-fast: false
matrix:
include:
- name: XCode Release aggressive cppcheck, not standalone
BUILD_TYPE: Release
- name: XCode Debug aggressive cppcheck, not standalone
BUILD_TYPE: Debug
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up dependencies for macOS
run: |
rm '/usr/local/bin/2to3-3.11'
rm '/usr/local/bin/idle3.11'
rm '/usr/local/bin/pydoc3.11'
rm '/usr/local/bin/python3.11'
rm '/usr/local/bin/python3.11-config'
brew update
brew install boost cppcheck
- name: Configure CMake with developer warnings
shell: bash
run: |
export CC=clang
export CXX=clang++
cmake -B build "$GITHUB_WORKSPACE" "-DCMAKE_BUILD_TYPE=$BUILD_TYPE" \
-DCPPCHECK_AGGRESSIVE=ON -Wdev -Wdeprecated --warn-uninitialized
- name: Build
working-directory: ${{github.workspace}}/build
run: make -j3 -k
continue-on-error: true