Skip to content

MSVC verbose

MSVC verbose #59

Workflow file for this run

name: Build CI
on: [push]
jobs:
build:
name: ${{ matrix.config.name}}
runs-on: ${{matrix.config.os}}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Windows MSVC",
enabled: 1,
os: windows-latest,
deps: "",
config: "cmake .",
build: "cmake --build .",
test: 'D:\a\rtosc\rtosc\Debug\rtosc-time.exe' # ctest -V --interactive-debug-mode --timeout 5
}
- {
name: "Ubuntu gcc",
enabled: 0,
os: ubuntu-latest,
deps: "sudo apt-get install liblo-dev",
config: "mkdir build && cd build && cmake ..",
build: "cd build && make",
test: "cd build && ctest --output-on-failure"
}
- {
name: "macOS clang",
enabled: 0,
os: macos-latest,
deps: "",
config: "mkdir build && cd build && cmake ..",
build: "cd build && make",
test: "cd build && ctest --output-on-failure"
}
steps:
- name: Check if tests should be run
- run: echo "Running tests on ${{ matrix.os }} with enabled value: ${{ matrix.enabled }}"

Check failure on line 43 in .github/workflows/ccpp.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ccpp.yml

Invalid workflow file

You have an error in your yaml syntax on line 43
- name: Build steps
- if: ${{matrix.config.enabled == 1}}
- name: install_deps
run: ${{matrix.config.deps}}
- name: configure
run: ${{matrix.config.config}}
- name: make
run: ${{matrix.config.build}}
- name: make test
run: ${{matrix.config.test}}