mirror of
				https://github.com/hyperion-project/hyperion.ng.git
				synced 2025-03-01 10:33:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			1023 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1023 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# for executing in non travis environment
 | 
						|
 | 
						|
[ -z "$TRAVIS_OS_NAME" ] && TRAVIS_OS_NAME="$(uname -s | tr 'A-Z' 'a-z')"
 | 
						|
 | 
						|
# Detect number of processor cores
 | 
						|
 | 
						|
if [[ $TRAVIS_OS_NAME == 'osx' || $TRAVIS_OS_NAME == 'darwin' ]]; then
 | 
						|
	procs=$(sysctl -n hw.ncpu | xargs)
 | 
						|
elif [[ $TRAVIS_OS_NAME == 'linux' ]]; then
 | 
						|
    procs=$(nproc)
 | 
						|
else
 | 
						|
    # For most modern systems, including the pi, this is a sane default
 | 
						|
    procs=4
 | 
						|
fi
 | 
						|
 | 
						|
# compile prepare
 | 
						|
mkdir build || exit 1
 | 
						|
cd build
 | 
						|
 | 
						|
# Compile hyperion for tags
 | 
						|
if [[ -n $TRAVIS_TAG ]]; then
 | 
						|
	cmake -DPLATFORM=x86 -DCMAKE_BUILD_TYPE=Release .. || exit 2
 | 
						|
	make -j$(nproc) || exit 3
 | 
						|
 | 
						|
# Compile hyperion for cron
 | 
						|
elif [[ $TRAVIS_EVENT_TYPE == 'cron' ]]; then
 | 
						|
	cmake -DPLATFORM=x86 -DCMAKE_BUILD_TYPE=Debug .. || exit 4
 | 
						|
	make -j$(nproc) || exit 5
 | 
						|
 | 
						|
# Compile for PR
 | 
						|
else 
 | 
						|
	cmake -DPLATFORM=x86-dev -DCMAKE_BUILD_TYPE=Debug .. || exit 6
 | 
						|
	make -j$(nproc) || exit 7
 | 
						|
fi
 | 
						|
	
 | 
						|
# Build the package on Linux
 | 
						|
 | 
						|
if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
 | 
						|
    make -j$(nproc) package || exit 8
 | 
						|
fi
 | 
						|
 |