mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
27 lines
452 B
Bash
Executable File
27 lines
452 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
ROOTDIR="$(dirname "$0")/.."
|
|
BUILDDIR="${ROOTDIR}/build"
|
|
|
|
if [[ $# -eq 0 ]]; then
|
|
BUILD_TYPE=Release
|
|
else
|
|
BUILD_TYPE="$1"
|
|
fi
|
|
|
|
if [[ "$(git tag --points-at HEAD 2>/dev/null | head -n 1)" == v* ]]; then
|
|
touch "${ROOTDIR}/prerelease.txt"
|
|
fi
|
|
|
|
mkdir -p "${BUILDDIR}"
|
|
cd "${BUILDDIR}"
|
|
|
|
cmake .. -DCMAKE_BUILD_TYPE="$BUILD_TYPE" "${@:2}"
|
|
make -j2
|
|
|
|
if [[ "${CI}" == "" ]]; then
|
|
echo "Installing ..."
|
|
sudo make install
|
|
fi
|