mirror of https://github.com/aminya/setup-cpp
27 lines
664 B
YAML
27 lines
664 B
YAML
|
schemaVersion: 2.0.0
|
||
|
|
||
|
commandTests:
|
||
|
- name: mingw c compiler
|
||
|
command: $CC
|
||
|
args: ["--version"]
|
||
|
expectedOutput: [".*x86_64-w64-mingw32-gcc.*"]
|
||
|
- name: mingw c++ compiler
|
||
|
command: $CXX
|
||
|
args: ["--version"]
|
||
|
expectedOutput: [".*x86_64-w64-mingw32-cpp.*"]
|
||
|
- name: powershell
|
||
|
command: pwsh
|
||
|
args: ["-Version"]
|
||
|
expectedOutput: [".*PowerShell.*"]
|
||
|
|
||
|
fileExistenceTests:
|
||
|
- name: "vcpkg"
|
||
|
path: "/root/vcpkg"
|
||
|
shouldExist: true
|
||
|
- name: "cmake toolchain"
|
||
|
path: "/home/cmake/toolchains/x86_64-w64-mingw32.toolchain.cmake"
|
||
|
shouldExist: true
|
||
|
- name: "cross root"
|
||
|
path: "/usr/x86_64-w64-mingw32"
|
||
|
shouldExist: true
|