mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-12 10:04:14 +02:00
Ignore clock skew in container libc/package builds using make.
It is common for containers to have clock skew so the build process takes care of this issue independently.
This commit is contained in:
parent
b63ede5614
commit
8546571461
@ -211,6 +211,10 @@
|
||||
<release-item>
|
||||
<p>Update wording for release note sections.</p>
|
||||
</release-item>
|
||||
|
||||
<release-item>
|
||||
<p>Ignore clock skew in container libc/package builds using make. It is common for containers to have clock skew so the build process takes care of this issue independently.</p>
|
||||
</release-item>
|
||||
</release-refactor-list>
|
||||
</release-doc-list>
|
||||
|
||||
|
10
test/test.pl
10
test/test.pl
@ -457,17 +457,19 @@ eval
|
||||
($bContainerExists ? "docker exec -i test-build bash -c '" : '') .
|
||||
"cd ${strBuildPath} && perl Makefile.PL INSTALLMAN1DIR=none INSTALLMAN3DIR=none" .
|
||||
($bContainerExists ? "'" : ''),
|
||||
{bShowOutputAsync => $bLogDetail});
|
||||
{bSuppressStdErr => true, bShowOutputAsync => $bLogDetail});
|
||||
executeTest(
|
||||
($bContainerExists ? 'docker exec -i test-build ' : '') .
|
||||
"make -C ${strBuildPath}",
|
||||
{bSuppressStdErr => true, bShowOutputAsync => $bLogDetail});
|
||||
executeTest(
|
||||
($bContainerExists ? 'docker exec -i test-build ' : '') .
|
||||
"make -C ${strBuildPath} test", {bShowOutputAsync => $bLogDetail});
|
||||
"make -C ${strBuildPath} test",
|
||||
{bSuppressStdErr => true, bShowOutputAsync => $bLogDetail});
|
||||
executeTest(
|
||||
($bContainerExists ? 'docker exec -i test-build ' : 'sudo ') .
|
||||
"make -C ${strBuildPath} install", {bShowOutputAsync => $bLogDetail});
|
||||
"make -C ${strBuildPath} install",
|
||||
{bSuppressStdErr => true, bShowOutputAsync => $bLogDetail});
|
||||
|
||||
if ($bContainerExists)
|
||||
{
|
||||
@ -476,7 +478,7 @@ eval
|
||||
|
||||
if ($strBuildVM eq $strVmHost)
|
||||
{
|
||||
executeTest("sudo make -C ${strBuildPath} install");
|
||||
executeTest("sudo make -C ${strBuildPath} install", {bSuppressStdErr => true});
|
||||
|
||||
# Load the module dynamically
|
||||
require pgBackRest::LibC;
|
||||
|
Loading…
Reference in New Issue
Block a user