upgrading upstream to 2.0.0 #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: FreeBSD-14.1 clang-18.1 | |
on: [push, pull_request] | |
jobs: | |
freebsd-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: build with cmake in FreeBSD vm | |
uses: vmactions/[email protected] | |
with: | |
usesh: true | |
prepare: | | |
pkg install -y cmake | |
run: | | |
cmake -S . -B build -DCMAKE_BUILD_TYPE=debug && # debug includes sanitizers | |
cmake --build build # includes tests by default, tests are run with env set to fail on sanitizers |