build: Updated Docker Linux 64bit image to Qt 5.12.6 and LLVM/Clang 9.0.0

* updated to CentOS 7
* removed 32bit image
This commit is contained in:
Eberhard Graether
2019-12-16 15:38:31 +01:00
parent 67b803bd29
commit 99cc3d9636
12 changed files with 86 additions and 269 deletions
+2 -2
View File
@@ -13,12 +13,12 @@ then
mkdir -p build/Debug
cd build/Debug
cmake -G Ninja -DCMAKE_BUILD_TYPE="Debug" ../..
cmake -G Ninja -DCMAKE_BUILD_TYPE="Debug" -DBUILD_CXX_LANGUAGE_PACKAGE=ON -DBUILD_JAVA_LANGUAGE_PACKAGE=ON -DBUILD_PYTHON_LANGUAGE_PACKAGE=ON -DDOCKER_BUILD=ON ../..
cd ../..
mkdir -p build/Release
cd build/Release
cmake -G Ninja -DCMAKE_BUILD_TYPE="Release" ../..
cmake -G Ninja -DCMAKE_BUILD_TYPE="Release" -DBUILD_CXX_LANGUAGE_PACKAGE=ON -DBUILD_JAVA_LANGUAGE_PACKAGE=ON -DBUILD_PYTHON_LANGUAGE_PACKAGE=ON -DDOCKER_BUILD=ON ../..
cd ../..
if [ $? -ne 0 ]