Use a SPDX header for the LGPL 2.1 license #175
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" | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
# branches: [ master ] | |
jobs: | |
build_libebml: | |
name: libebml | |
runs-on: ubuntu-latest | |
env: | |
CMAKE_OPTIONS: -DCMAKE_CXX_EXTENSIONS=OFF | |
steps: | |
- uses: lukka/get-cmake@latest | |
- name: Get pushed code | |
uses: actions/checkout@v3 | |
- name: Configure | |
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built | |
- name: Build | |
run: cmake --build _build --parallel | |
- name: Test installation | |
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built |