mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
# Licensed to the Apache Software Foundation (ASF) under one
 | 
						|
# or more contributor license agreements.  See the NOTICE file
 | 
						|
# distributed with this work for additional information
 | 
						|
# regarding copyright ownership.  The ASF licenses this file
 | 
						|
# to you under the Apache License, Version 2.0 (the
 | 
						|
# "License"); you may not use this file except in compliance
 | 
						|
# with the License.  You may obtain a copy of the License at
 | 
						|
#
 | 
						|
#   http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
#
 | 
						|
# Unless required by applicable law or agreed to in writing,
 | 
						|
# software distributed under the License is distributed on an
 | 
						|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 | 
						|
# KIND, either express or implied.  See the License for the
 | 
						|
# specific language governing permissions and limitations
 | 
						|
# under the License.
 | 
						|
sudo: required
 | 
						|
language: java
 | 
						|
cache:
 | 
						|
  directories:
 | 
						|
  - $HOME/.cache
 | 
						|
jdk:
 | 
						|
- oraclejdk7
 | 
						|
notifications:
 | 
						|
  email: false
 | 
						|
env:
 | 
						|
  global:
 | 
						|
     - REGRESSION_CYCLE=4
 | 
						|
     - REGRESSION_INDEX=6
 | 
						|
  matrix:
 | 
						|
    - TESTS="smoke/test_affinity_groups smoke/test_primary_storage"
 | 
						|
    - TESTS="smoke/test_deploy_vms_with_varied_deploymentplanners smoke/test_disk_offerings smoke/test_global_settings smoke/test_multipleips_per_nic"
 | 
						|
    - TESTS="smoke/test_portable_publicip smoke/test_privategw_acl smoke/test_public_ip_range smoke/test_pvlan smoke/test_regions smoke/test_network"
 | 
						|
    - TESTS="smoke/test_reset_vm_on_reboot smoke/test_resource_detail smoke/test_routers smoke/test_guest_vlan_range smoke/test_iso smoke/test_non_contigiousvlan"
 | 
						|
    - TESTS="smoke/test_secondary_storage smoke/test_service_offerings smoke/test_ssvm smoke/test_templates smoke/test_over_provisioning"
 | 
						|
 | 
						|
    - TESTS="smoke/test_volumes smoke/test_vpc_vpn smoke/misc/test_deploy_vm smoke/test_vm_life_cycle component/test_mm_max_limits"
 | 
						|
    - TESTS="component/test_acl_isolatednetwork_delete component/test_mm_domain_limits component/test_acl_listsnapshot"
 | 
						|
    - TESTS="component/test_acl_listvm component/test_acl_sharednetwork_deployVM-impersonation component/test_acl_sharednetwork"
 | 
						|
    - TESTS="component/test_snapshots component/test_acl_listvolume"
 | 
						|
before_install: travis_wait 30 ./tools/travis/before_install.sh
 | 
						|
install: ./tools/travis/install.sh
 | 
						|
before_script: travis_wait 30 ./tools/travis/before_script.sh
 | 
						|
script:
 | 
						|
  - travis_wait 30 sleep 30
 | 
						|
  - ./tools/travis/script.sh $TESTS
 | 
						|
after_success: ./tools/travis/after_success.sh
 | 
						|
after_failure: ./tools/travis/after_failure.sh
 | 
						|
after_script: ./tools/travis/after_script.sh
 |