CLAP 1.2.7 #1645
This file contains hidden or 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 upgrade && brew install automake autoconf ninja cmake emscripten wasi-libc wasi-runtimes llvm | |
| - 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" | |
| - name: Build emscripten plugin template. | |
| uses: lukka/run-cmake@v10 | |
| if: startsWith(matrix.os, 'macOS') | |
| id: runcmake-emscripten | |
| with: | |
| configurePreset: "emscripten" | |
| buildPreset: "emscripten-release" | |
| # TODO: enable it, unfortunately it currently fails (only on github, not my on OS) with: | |
| # clang: error: unable to execute command: posix_spawn failed: No such file or directory | |
| # - name: Build wasi plugin template. | |
| # uses: lukka/run-cmake@v10 | |
| # if: startsWith(matrix.os, 'macOS') | |
| # id: runcmake-wasi | |
| # with: | |
| # configurePreset: "wasi" | |
| # buildPreset: "wasi-release" |