mirror of https://github.com/aminya/setup-cpp
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
|
schemaVersion: 2.0.0
|
||
|
|
||
|
commandTests:
|
||
|
- name: gcc compiler
|
||
|
command: gcc
|
||
|
args: ["--version"]
|
||
|
expectedOutput: [".*gcc.*"]
|
||
|
- name: g++ compiler
|
||
|
command: g++
|
||
|
args: ["--version"]
|
||
|
expectedOutput: [".*g\\+\\+.*"]
|
||
|
- name: make
|
||
|
command: make
|
||
|
args: ["--version"]
|
||
|
expectedOutput: [".*GNU Make.*"]
|
||
|
- name: ninja
|
||
|
command: /root/ninja/ninja
|
||
|
args: ["--version"]
|
||
|
expectedOutput: [".*1.*"]
|
||
|
- name: gcovr
|
||
|
command: gcovr
|
||
|
args: ["--version"]
|
||
|
expectedOutput: [".*gcovr.*"]
|
||
|
- name: ccache
|
||
|
command: ccache
|
||
|
args: ["--version"]
|
||
|
expectedOutput: [".*ccache.*"]
|
||
|
- name: doxygen
|
||
|
command: doxygen
|
||
|
args: ["--version"]
|
||
|
expectedOutput: [".*1.*"]
|
||
|
- name: cppcheck
|
||
|
command: cppcheck
|
||
|
args: ["--version"]
|
||
|
expectedOutput: [".*Cppcheck.*"]
|
||
|
- name: clang
|
||
|
command: /root/llvm/bin/clang
|
||
|
args: ["--version"]
|
||
|
expectedOutput: [".*clang.*"]
|
||
|
- name: node
|
||
|
command: node
|
||
|
args: ["-v"]
|
||
|
expectedOutput: [".*v16.*"]
|
||
|
|
||
|
fileExistenceTests:
|
||
|
- name: "vcpkg"
|
||
|
path: "/root/vcpkg"
|
||
|
shouldExist: true
|
||
|
- name: "llvm"
|
||
|
path: "/root/llvm"
|
||
|
shouldExist: true
|