👷 fixed required packages

parent f091fe31
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"targets": { "targets": {
"raspbian-jessie": { "raspbian-jessie": {
"buildenv": "raspbian-jessie", "buildenv": "raspbian-jessie",
"builddeps": ["build-essential", "cmake", "wget"], "builddeps": ["build-essential", "wget"],
"buildcmd": [ "buildcmd": [
"uname -a", "uname -a",
"cd", "cd",
...@@ -21,13 +21,19 @@ ...@@ -21,13 +21,19 @@
}, },
"jessie-i386": { "jessie-i386": {
"buildenv": "jessie-i386", "buildenv": "jessie-i386",
"builddeps": ["cmake", "build-essential"], "builddeps": ["build-essential", "wget"],
"buildcmd": [ "buildcmd": [
"uname -a", "uname -a",
"cd", "cd",
"wget https://github.com/Kitware/CMake/releases/download/v3.14.0/cmake-3.14.0.tar.gz",
"tar xfz cmake-3.14.0.tar.gz",
"cd cmake-3.14.0",
"./bootstrap",
"make -j8",
"cd",
"mkdir build", "mkdir build",
"cd build", "cd build",
"cmake /project/repo/checkout", "../cmake-3.14.0/bin/cmake /project/repo/checkout",
"make -j8", "make -j8",
"ctest -VV -j8" "ctest -VV -j8"
] ]
...@@ -47,7 +53,7 @@ ...@@ -47,7 +53,7 @@
}, },
"centos7-x86_64": { "centos7-x86_64": {
"buildenv": "centos7-x86_64", "buildenv": "centos7-x86_64",
"builddeps": ["cmake", "make", "wget", "gcc-c++"], "builddeps": ["make", "wget", "gcc-c++"],
"buildcmd": [ "buildcmd": [
"uname -a", "uname -a",
"cd", "cd",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment