don't force the libebml namespace in KaxSemantic.h #76
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: "Build tools" | |
on: pull_request | |
jobs: | |
build_tools_win32: | |
name: Build all tools for ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
include: | |
- os: windows-latest | |
triplet: x64-windows | |
- os: ubuntu-latest | |
triplet: x64-linux | |
- os: macos-latest | |
triplet: x64-osx | |
steps: | |
- name: Get pushed code | |
uses: actions/checkout@v3 | |
- uses: lukka/get-cmake@latest | |
- name: Configure CMake | |
run: cmake -S . -B _build | |
- name: Build with CMake | |
run: cmake --build _build --config Debug --parallel | |
- name: Test installation | |
run: | | |
cmake --install _build --config Debug --prefix _built |