store the info about having a default values in EbmlCallbacks #119
Workflow file for this run
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: "Linux+gcc13" | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
# branches: [ master ] | |
jobs: | |
build_libmatroska: | |
name: libmatroska ${{ matrix.shared.name }} with gcc13 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
shared: [ | |
{ "name": "Dynamic", "option": "ON"}, | |
{ "name": "Static", "option": "OFF"} | |
] | |
env: | |
CMAKE_OPTIONS: -DDEV_MODE=ON | |
CMAKE_MATROSKA_OPTIONS: -DBUILD_EXAMPLES=ON | |
steps: | |
- uses: lukka/get-cmake@latest | |
- name: Get pushed code | |
uses: actions/checkout@v3 | |
- name: Checkout libebml | |
uses: actions/checkout@v3 | |
with: | |
repository: Matroska-Org/libebml | |
path: libebml | |
# minimum version we support ref: 'release-1.4.3' | |
- name: Configure ${{ matrix.shared.name }} libebml | |
run: cmake -S libebml -B libebml/_build ${{ env.CMAKE_OPTIONS }} -DBUILD_SHARED_LIBS=${{ matrix.shared.option }} | |
env: | |
CC: gcc-13 | |
CXX: g++-13 | |
- name: Build libebml | |
run: cmake --build libebml/_build --parallel | |
- name: Install libebml | |
run: cmake --install libebml/_build --prefix ${GITHUB_WORKSPACE}/_built | |
- name: Configure ${{ matrix.shared.name }} libmatroska | |
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} ${{ env.CMAKE_MATROSKA_OPTIONS }} -DBUILD_SHARED_LIBS=${{ matrix.shared.option }} -DEBML_DIR="${GITHUB_WORKSPACE}/_built/lib/cmake/EBML" | |
env: | |
CC: gcc-13 | |
CXX: g++-13 | |
- name: Build | |
run: cmake --build _build --parallel | |
- name: Test installation | |
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built |