Skip to content

Merge remote-tracking branch 'robux4/1x_seekid_length' into v1.x #225

Merge remote-tracking branch 'robux4/1x_seekid_length' into v1.x

Merge remote-tracking branch 'robux4/1x_seekid_length' into v1.x #225

Workflow file for this run

name: "Windows Build"
on:
push:
branches: [ v1.x ]
pull_request:
# branches: [ master ]
jobs:
build_libmatroska:
name: ${{ matrix.config }} libmatroska for Windows
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
config: [Debug, Release]
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
ref: v1.x
- name: Configure libebml
run: cmake -S libebml -B libebml/_build
- name: Build libebml
run: cmake --build libebml/_build --config ${{ matrix.config }} --parallel
- name: Install libebml
run: cmake --install libebml/_build --config ${{ matrix.config }} --prefix ${GITHUB_WORKSPACE}/_built
- name: Configure CMake
run: cmake -S . -B _build -DEBML_DIR="${GITHUB_WORKSPACE}/_built/lib/cmake/EBML"
- name: Build with CMake
run: cmake --build _build --config ${{ matrix.config }} --parallel
- name: Test installation
run: cmake --install _build --config ${{ matrix.config }} --prefix ${GITHUB_WORKSPACE}/_built