Rework stylesheets to aid performance #96
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: Demo Runner | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
runner: [macos-latest, windows-latest] | |
include: | |
- generator: Xcode | |
runner: macos-latest | |
name: macOS | |
test-command: sh ./.github/scripts/pluginval-macos.sh | |
- generator: Visual Studio 17 | |
runner: windows-latest | |
name: Windows | |
test-command: powershell ./.github/scripts/pluginval-windows.ps1 | |
name: Build Demo ${{matrix.name}} | |
runs-on: ${{matrix.runner}} | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- name: CMake Configure | |
run: cmake -Bbuild -G "${{matrix.generator}}" -DJIVE_BUILD_DEMO_RUNNER=ON | |
- name: CMake Build | |
run: cmake --build build --config Release | |
- name: Pluginval | |
run: ${{matrix.test-command}} |