You've already forked pgbackrest
							
							
				mirror of
				https://github.com/pgbackrest/pgbackrest.git
				synced 2025-10-30 23:37:45 +02:00 
			
		
		
		
	Test pull requests in Cirrus CI.
Both FreedBSD and MacOS use clang as their default compiler and clang catches some errors that gcc does not. Specifically, wide integers being assigned to short integers resulting in possible truncations.
This commit is contained in:
		| @@ -1,8 +1,8 @@ | ||||
| # Cirrus CI Build Definitions | ||||
| # ---------------------------------------------------------------------------------------------------------------------------------- | ||||
|  | ||||
| # Build the branch if it is integration or ends in -ci/-cic (-cic targets only Cirrus CI) | ||||
| only_if: $CIRRUS_BRANCH == 'integration' || $CIRRUS_BRANCH =~ '.*-ci$' || $CIRRUS_BRANCH =~ '.*-cic$' | ||||
| # Build the branch if it is integration, a pull request, or ends in -ci/-cic (-cic targets only Cirrus CI) | ||||
| only_if: $CIRRUS_BRANCH == 'integration' || $CIRRUS_PR != '' || $CIRRUS_BRANCH =~ '.*-ci$' || $CIRRUS_BRANCH =~ '.*-cic$' | ||||
|  | ||||
| # No auto-cancel on integration | ||||
| auto_cancellation: $CIRRUS_BRANCH != 'integration' | ||||
|   | ||||
		Reference in New Issue
	
	Block a user