-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from SnehalA/dev
Create build.sh
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
install_dep(){ | ||
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | sudo bash | ||
sudo yum install -y git-lfs | ||
git lfs install | ||
sudo yum install -y java-1.8.0-openjdk-devel git cmake patch libtool automake yasm zlib-devel centos-release-scl | ||
sudo yum install -y devtoolset-7-gcc-* | ||
} | ||
echo "Installing dependencies" | ||
install_dep | ||
source scl_source enable devtoolset-7 | ||
# export JAVA_PROXY="-Dhttp.proxyHost=proxy.example.com -Dhttp.proxyPort=1234 -Dhttps.proxyHost=proxy.example.com -Dhttps.proxyPort=1234" | ||
# gcc --version | ||
./gradlew $JAVA_PROXY clean | ||
./gradlew $JAVA_PROXY build |