Skip to content

[Nx] allow for per vfs build options, add switch workflow. #10

[Nx] allow for per vfs build options, add switch workflow.

[Nx] allow for per vfs build options, add switch workflow. #10

Workflow file for this run

name: build_pc
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
preset: [core]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
# fetch latest cmake
- uses: lukka/get-cmake@latest
- name: Configure CMake
run: |
cmake --preset ${{ matrix.preset }}
- name: Build
run: cmake --build --preset ${{ matrix.preset }} --parallel 4