[1.x] KaxBlock: fix leak when reading EBML lace is aborted #433
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: "macOS Build" | |
| on: | |
| push: | |
| branches: [ v1.x ] | |
| pull_request: | |
| # branches: [ master ] | |
| jobs: | |
| build_libmatroska: | |
| name: libmatroska for macOS | |
| runs-on: macos-latest | |
| env: | |
| CMAKE_MATROSKA_OPTIONS: -DBUILD_EXAMPLES=ON | |
| steps: | |
| - name: Get pushed code | |
| uses: actions/checkout@v4 | |
| - name: Checkout libebml | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: Matroska-Org/libebml | |
| path: libebml | |
| ref: v1.x | |
| - name: Configure libebml | |
| run: cmake -S libebml -B libebml/_build -G Ninja | |
| - name: Build libebml | |
| run: cmake --build libebml/_build --parallel | |
| - name: Install libebml | |
| run: cmake --install libebml/_build --prefix ${GITHUB_WORKSPACE}/_built | |
| - name: Configure CMake | |
| run: cmake -S . -B _build ${{ env.CMAKE_MATROSKA_OPTIONS }} -DEBML_DIR="${GITHUB_WORKSPACE}/_built/lib/cmake/EBML" -G Ninja | |
| - name: Build with CMake | |
| run: cmake --build _build --parallel | |
| - name: Test installation | |
| run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built |