Skip to content

bump version number to 1.4.5 #142

bump version number to 1.4.5

bump version number to 1.4.5 #142

Workflow file for this run

name: "Windows Build"
on:
push:
branches: [ v1.x ]
pull_request:
# branches: [ master ]
jobs:
build_libebml:
name: ${{ matrix.config }} libebml 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: Configure CMake
run: cmake -S . -B _build -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
- 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