Upgrade Core to e1cd255bdd8a0cff32e237b95070548f203edbe7
#2923
Workflow file for this run
This file contains hidden or 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: JSON BinPack | |
on: | |
schedule: | |
# Once per day, Monday to Friday | |
- cron: '0 19 * * 1-5' | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- os: macos-latest | |
cc: clang | |
cxx: clang++ | |
type: static | |
- os: macos-latest | |
cc: clang | |
cxx: clang++ | |
type: shared | |
- os: macos-latest | |
cc: gcc-13 | |
cxx: g++-13 | |
type: static | |
- os: ubuntu-latest | |
cc: clang | |
cxx: clang++ | |
type: static | |
- os: ubuntu-latest | |
cc: gcc | |
cxx: g++ | |
type: static | |
- os: ubuntu-latest | |
cc: clang | |
cxx: clang++ | |
type: shared | |
- os: ubuntu-latest | |
cc: gcc | |
cxx: g++ | |
type: shared | |
- os: windows-latest | |
type: static | |
- os: windows-latest | |
type: shared | |
# Sanitizers | |
- os: ubuntu-latest | |
cc: clang | |
cxx: clang++ | |
type: static | |
options: -DJSONBINPACK_ADDRESS_SANITIZER:BOOL=ON | |
- os: ubuntu-latest | |
cc: clang | |
cxx: clang++ | |
type: static | |
options: -DJSONBINPACK_UNDEFINED_SANITIZER:BOOL=ON | |
runs-on: ${{ matrix.platform.os }} | |
env: | |
CC: ${{ matrix.platform.cc }} | |
CXX: ${{ matrix.platform.cxx }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies (macOS) | |
if: runner.os == 'macos' | |
run: brew bundle | |
env: | |
HOMEBREW_NO_ANALYTICS: 1 | |
HOMEBREW_NO_AUTO_UPDATE: 1 | |
- run: cmake --version | |
- name: Configure JSON BinPack (static) | |
if: matrix.platform.type == 'static' | |
run: > | |
cmake -S . -B ./build | |
-DCMAKE_BUILD_TYPE:STRING=Release | |
-DJSONBINPACK_NUMERIC:BOOL=ON | |
-DJSONBINPACK_RUNTIME:BOOL=ON | |
-DJSONBINPACK_COMPILER:BOOL=ON | |
-DJSONBINPACK_TESTS:BOOL=ON | |
-DJSONBINPACK_DOCS:BOOL=OFF | |
-DBUILD_SHARED_LIBS:BOOL=OFF | |
-DCMAKE_COMPILE_WARNING_AS_ERROR:BOOL=ON | |
${{ matrix.platform.options }} | |
- name: Configure JSON BinPack (shared) | |
if: matrix.platform.type == 'shared' | |
run: > | |
cmake -S . -B ./build | |
-DCMAKE_BUILD_TYPE:STRING=Release | |
-DJSONBINPACK_NUMERIC:BOOL=ON | |
-DJSONBINPACK_RUNTIME:BOOL=ON | |
-DJSONBINPACK_COMPILER:BOOL=ON | |
-DJSONBINPACK_TESTS:BOOL=ON | |
-DJSONBINPACK_DOCS:BOOL=OFF | |
-DBUILD_SHARED_LIBS:BOOL=ON | |
-DCMAKE_COMPILE_WARNING_AS_ERROR:BOOL=ON | |
${{ matrix.platform.options }} | |
- run: cmake --build ./build --config Release --target clang_format_test | |
- run: cmake --build ./build --config Release --parallel 4 | |
- run: > | |
cmake --install ./build --prefix ./build/dist --config Release --verbose | |
--component sourcemeta_core | |
- run: > | |
cmake --install ./build --prefix ./build/dist --config Release --verbose | |
--component sourcemeta_core_dev | |
- run: > | |
cmake --install ./build --prefix ./build/dist --config Release --verbose | |
--component sourcemeta_jsonbinpack | |
- run: > | |
cmake --install ./build --prefix ./build/dist --config Release --verbose | |
--component sourcemeta_jsonbinpack_dev | |
# Not every CTest version supports the --test-dir option. If such option | |
# is not recognized, `ctest` will successfully exit finding no tests. | |
# Better to be sure and `cd` all the time here. | |
- run: cd ./build && ctest --build-config Release --output-on-failure --parallel | |
env: | |
# See https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html | |
UBSAN_OPTIONS: print_stacktrace=1 |