You've already forked pgbackrest
							
							
				mirror of
				https://github.com/pgbackrest/pgbackrest.git
				synced 2025-10-30 23:37:45 +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:
		| @@ -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; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user