mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
SCRIPT_DIR="$( cd ${BASH_SOURCE[0]%/*} ; echo $PWD )"
 | 
						|
 | 
						|
set -x
 | 
						|
set -e
 | 
						|
set -o pipefail
 | 
						|
 | 
						|
# Get defaults
 | 
						|
source "${SCRIPT_DIR}/ci_defaults.sh"
 | 
						|
 | 
						|
if [ -z "${TRAVIS_BUILD_DIR}" ]; then
 | 
						|
  echo "TRAVIS_BUILD_DIR must be set to root of Z3 repository"
 | 
						|
  exit 1
 | 
						|
fi
 | 
						|
 | 
						|
if [ ! -d "${TRAVIS_BUILD_DIR}" ]; then
 | 
						|
  echo "TRAVIS_BUILD_DIR must be a directory"
 | 
						|
  exit 1
 | 
						|
fi
 | 
						|
 | 
						|
# These variables are specific to the macOS TravisCI
 | 
						|
# implementation and are not set in `ci_defaults.sh`.
 | 
						|
export PYTHON_EXECUTABLE="${PYTHON_EXECUTABLE:-$(which python)}"
 | 
						|
export Z3_SRC_DIR="${TRAVIS_BUILD_DIR}"
 | 
						|
export Z3_BUILD_DIR="${Z3_SRC_DIR}/build"
 | 
						|
export Z3_SYSTEM_TEST_DIR="${Z3_SRC_DIR}/z3_system_test"
 | 
						|
 | 
						|
# Overwrite whatever what set in TravisCI
 | 
						|
export CC="${C_COMPILER}"
 | 
						|
export CXX="${CXX_COMPILER}"
 | 
						|
 | 
						|
if [ "X${MACOS_SKIP_DEPS_UPDATE}" = "X1" ]; then
 | 
						|
  # This is just for local testing to avoid updating
 | 
						|
  echo "Skipping dependency update"
 | 
						|
else
 | 
						|
  "${SCRIPT_DIR}/install_deps_osx.sh"
 | 
						|
fi
 | 
						|
 | 
						|
# Build Z3
 | 
						|
"${SCRIPT_DIR}/build_z3_cmake.sh"
 | 
						|
# Test building docs
 | 
						|
"${SCRIPT_DIR}/test_z3_docs.sh"
 | 
						|
# Test examples
 | 
						|
"${SCRIPT_DIR}/test_z3_examples_cmake.sh"
 | 
						|
# Run unit tests
 | 
						|
"${SCRIPT_DIR}/test_z3_unit_tests_cmake.sh"
 | 
						|
# Run system tests
 | 
						|
"${SCRIPT_DIR}/test_z3_system_tests.sh"
 | 
						|
# Test install
 | 
						|
"${SCRIPT_DIR}/test_z3_install_cmake.sh"
 |