|
|
@@ -76,8 +76,8 @@ task :ci do
|
|
|
if ENV['CI'] && ENV['PACKAGE_UPLOAD'] && !ENV['RELEASE_TAG']
|
|
|
system 'git fetch --unshallow' or abort 'Failed to unshallow cloned repository'
|
|
|
end
|
|
|
- # Packaging always use Release configuration (temporary workaround due to Travis-CI insufficient memory, also always use Release configuration for MinGW and Android build)
|
|
|
- if ENV['PACKAGE_UPLOAD'] || (ENV['CI'] && (ENV['WINDOWS'] || ENV['ANDROID']))
|
|
|
+ # Packaging always use Release configuration (temporary workaround due to Travis-CI insufficient memory, also use Release configuration when CI build runs on a bad VM)
|
|
|
+ if ENV['PACKAGE_UPLOAD'] || ENV['BAD_VM']
|
|
|
$configuration = 'Release'
|
|
|
$testing = 0
|
|
|
else
|