mirror of
				https://gitlab.com/qemu-project/qemu.git
				synced 2025-11-03 08:00:38 +08:00 
			
		
		
		
	Since we express dependencies via a 'needs' clause, we don't need to split container builds into separate stages. GitLab happily lets jobs depend on other jobs in the same stage and will run them when possible. Acked-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20220722130431.2319019-4-berrange@redhat.com> [AJB: fix typo] Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20220725140520.515340-4-alex.bennee@linaro.org>
		
			
				
	
	
		
			8 lines
		
	
	
		
			246 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			246 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
# Currently we have two build stages after our containers are built:
 | 
						|
#  - build (for traditional build and test or first stage build)
 | 
						|
#  - test (for test stages, using build artefacts from a build stage)
 | 
						|
stages:
 | 
						|
  - containers
 | 
						|
  - build
 | 
						|
  - test
 |