setup-cpp/action.yml

99 lines
2.5 KiB
YAML
Raw Normal View History

name: "Setup Cpp (C++ / C)"
2021-09-14 14:57:47 +08:00
description: "Install all the tools required for building and testing C++/C projects."
author: "Amin Yahyaabadi"
inputs:
2021-09-16 19:07:52 +08:00
compiler:
description: "The compiler to use and its optional version separated by - e.g. llvm-13.0.0"
2021-09-16 19:07:52 +08:00
required: false
architecture:
description: "The CPU architecture"
required: false
2021-09-14 20:02:59 +08:00
llvm:
description: "The llvm version to install"
2021-09-16 22:03:54 +08:00
required: false
gcc:
description: "The gcc version to install"
2021-09-14 20:02:59 +08:00
required: false
2021-09-15 18:25:02 +08:00
msvc:
description: "The msvc version to install"
required: false
2021-12-05 22:20:14 +08:00
vcvarsall:
description: "If should run vcvarsall?"
required: false
2021-09-14 14:57:47 +08:00
cmake:
description: "The cmake version to install."
required: false
ninja:
description: "The ninja version to install."
2021-09-15 01:06:20 +08:00
required: false
conan:
2021-09-15 01:09:58 +08:00
description: "The conan version to install."
required: false
2022-01-31 06:40:11 +08:00
make:
description: "The make version to install."
required: false
2022-01-31 07:33:48 +08:00
task:
description: "The task version to install."
required: false
2022-01-23 09:14:48 +08:00
vcpkg:
description: "The vcpkg version to install."
required: false
2021-09-15 01:09:58 +08:00
meson:
description: "The meson version to install."
2021-09-15 01:06:20 +08:00
required: false
2021-09-15 01:42:08 +08:00
gcovr:
description: "The gcovr version to install."
required: false
python:
description: "The python version to install."
required: false
2021-09-16 16:41:47 +08:00
ccache:
description: "The ccache version to install."
required: false
2022-11-21 11:14:20 +08:00
sccache:
description: "The sccache version to install."
required: false
2021-09-16 16:47:47 +08:00
doxygen:
description: "The doxygen version to install."
required: false
graphviz:
description: "The graphviz version to install."
required: false
2021-09-16 16:47:47 +08:00
cppcheck:
description: "The cppcheck version to install."
required: false
clangtidy:
description: "The clang-tidy version to install."
required: false
clangformat:
description: "The clang-format version to install."
required: false
2021-09-16 16:49:25 +08:00
opencppcoverage:
description: "The opencppcoverage version to install."
required: false
kcov:
description: "The kcov version to install."
required: false
sevenzip:
description: "The 7z version to install."
required: false
2022-07-28 08:36:18 +08:00
nala:
description: 'The nala version to install ("" or "legacy").'
required: false
powershell:
description: "The powershell version to install."
required: false
timeout:
description: "The timeout for installation of one tool (in minutes)."
default: "20"
required: false
2021-09-14 14:57:47 +08:00
runs:
2024-02-17 06:22:53 +08:00
using: "node20"
2023-07-17 15:05:09 +08:00
main: "dist/actions/setup-cpp.js"
2021-09-14 14:57:47 +08:00
branding:
2021-09-14 15:00:41 +08:00
icon: "award"
color: "blue"