Tring restore bitbucket pipeline. Fixing locale is wrong way. Try get error

sting about copying.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2016-07-28 11:38:30 +03:00
parent 7b7ef6c0e2
commit e5cbf86ef2
2 changed files with 5 additions and 7 deletions

View file

@ -13,11 +13,7 @@ pipelines:
- grep -i processor /proc/cpuinfo | wc -l
- gcc --version
- apt-get update # required to install qt
- apt-get install -y locales xvfb qtbase5-dev libqt5svg5-dev qt5-default qttools5-dev-tools libqt5xmlpatterns5-dev libqt5core5a libqt5gui5 libqt5printsupport5 libqt5svg5 libqt5widgets5 libqt5xml5 libqt5xmlpatterns5 xpdf
- locale
- echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
- locale-gen "en_US.UTF-8"
- update-locale LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
- apt-get install -y xvfb qtbase5-dev libqt5svg5-dev qt5-default qttools5-dev-tools libqt5xmlpatterns5-dev libqt5core5a libqt5gui5 libqt5printsupport5 libqt5svg5 libqt5widgets5 libqt5xml5 libqt5xmlpatterns5 xpdf
- mkdir build
- cd build
- qmake --version

View file

@ -176,9 +176,11 @@ bool AbstractTest::CopyRecursively(const QString &srcFilePath, const QString &tg
}
}
if (not QFile::copy(srcFilePath, tgtFilePath))
QFile srcFile(srcFilePath);
if (not srcFile.copy(tgtFilePath))
{
const QString msg = QString("Can't copy file '%1' to '%2'.").arg(srcFilePath).arg(tgtFilePath);
const QString msg = QString("Can't copy file '%1' to '%2'. Error: %3").arg(srcFilePath).arg(tgtFilePath)
.arg(srcFile.errorString());
QWARN(qUtf8Printable(msg));
return false;
}