mirror of
				https://github.com/python-LimeReport/LimeReport.git
				synced 2025-11-03 23:21:23 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			443 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			443 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
language: cpp
 | 
						|
 | 
						|
compiler:
 | 
						|
  - gcc
 | 
						|
 | 
						|
sudo: required
 | 
						|
dist: trusty
 | 
						|
 | 
						|
env:
 | 
						|
  - QT_BASE=56
 | 
						|
 | 
						|
before_install:
 | 
						|
  - if [ "$QT_BASE" = "56" ]; then sudo add-apt-repository ppa:beineri/opt-qt562-trusty -y; fi
 | 
						|
  - sudo apt-get update -qq
 | 
						|
 | 
						|
install:
 | 
						|
  - if [ "$QT_BASE" = "56" ]; then sudo apt-get install -qq qt56base qt56script qt56tools ; source /opt/qt56/bin/qt56-env.sh; fi
 | 
						|
  
 | 
						|
 | 
						|
script:
 | 
						|
  - qmake -r
 | 
						|
  - make
 | 
						|
  - make check
 | 
						|
 | 
						|
notifications:
 | 
						|
  email: false
 | 
						|
 |