- Changed the new cstr_join_s() and cstr_join_vec() macro functions. #70
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: "CMake CI" | |
on: | |
pull_request: | |
push: | |
jobs: | |
cmake-build: | |
runs-on: ubuntu-latest | |
env: | |
CFLAGS: -DSTC_STATIC -Wall -Wno-unused-function -ggdb3 -fsanitize=address -fsanitize=undefined -fsanitize=pointer-compare -fsanitize=pointer-subtract | |
CXXFLAGS: -DSTC_STATIC -Wall -Wno-unused-function -ggdb3 -fsanitize=address -fsanitize=undefined -fsanitize=pointer-compare -fsanitize=pointer-subtract | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v4 | |
- name: 'Build & Test' | |
uses: ashutoshvarma/action-cmake-build@master | |
with: | |
cc: gcc | |
cxx: g++ | |
build-type: Release | |
configure-options: -DBUILD_TESTING=1 | |
ctest-options: --output-on-failure | |
run-test: true |