Document the special lifetime of clap_event_midi_sysex::buffer #1436
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
# Copyright (c) 2021 Luca Cappa | |
# Released under the term specified in file LICENSE.txt | |
# SPDX short identifier: MIT | |
# | |
# The peculiarity of this workflow is that assumes vcpkg stored as a submodule of this repository. | |
# This workflow does the following: | |
# - Restores vcpkg artifacts from cache. | |
# - Sets up vcpkg if needed, then run CMake with CMakePreset.json using a configuration | |
# that leverages the vcpkg's toolchain file. This will automatically run vcpkg to install dependencies | |
# described by the vcpkg.json manifest file. It will be a no-op if those are restored from cache. | |
# - Finally builds the sources with Ninja. | |
name: build | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
VCPKG: | |
name: ${{ matrix.os }}-${{ github.workflow }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: lukka/get-cmake@latest | |
if: startsWith(matrix.os, 'win') | |
- name: Setup MacOS | |
if: startsWith(matrix.os, 'macOS') | |
run: brew install automake autoconf ninja cmake | |
- name: Setup Ubuntu | |
if: startsWith(matrix.os, 'ubuntu') | |
run: sudo apt install ninja-build cmake | |
- name: Run CMake+Ninja+CTest to generate/build/test. | |
uses: lukka/run-cmake@v10 | |
id: runcmake-ninja | |
with: | |
configurePreset: 'ninja' | |
buildPreset: 'ninja-release' | |
testPreset: 'ninja-release' | |
- name: Run CMake+MSVC+CTest to generate/build/test. | |
uses: lukka/run-cmake@v10 | |
if: startsWith(matrix.os, 'win') | |
id: runcmake-msvc | |
with: | |
configurePreset: 'msvc' | |
buildPreset: 'msvc-release' | |
testPreset: 'msvc-release' |