mirror of https://github.com/aminya/setup-cpp
fix: change the tool installation order
This commit is contained in:
parent
d941917c7a
commit
ec62f654e0
10
src/main.ts
10
src/main.ts
|
@ -42,20 +42,20 @@ const setups = {
|
||||||
|
|
||||||
/** The tools that can be installed */
|
/** The tools that can be installed */
|
||||||
const tools: Array<keyof typeof setups> = [
|
const tools: Array<keyof typeof setups> = [
|
||||||
|
"choco",
|
||||||
|
"brew",
|
||||||
|
"python",
|
||||||
"cmake",
|
"cmake",
|
||||||
"ninja",
|
"ninja",
|
||||||
"python",
|
|
||||||
"conan",
|
"conan",
|
||||||
"meson",
|
"meson",
|
||||||
"gcovr",
|
"gcovr",
|
||||||
"opencppcoverage",
|
"opencppcoverage",
|
||||||
"llvm",
|
|
||||||
"gcc",
|
|
||||||
"choco",
|
|
||||||
"brew",
|
|
||||||
"ccache",
|
"ccache",
|
||||||
"doxygen",
|
"doxygen",
|
||||||
"cppcheck",
|
"cppcheck",
|
||||||
|
"llvm",
|
||||||
|
"gcc",
|
||||||
"msvc",
|
"msvc",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue