Skip to content

Commit

Permalink
Merge pull request #115 from SnehalA/dev
Browse files Browse the repository at this point in the history
Create build.sh
  • Loading branch information
Kmannth authored Aug 26, 2020
2 parents 97f3889 + 1f9352a commit fa11ff7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions build.sh
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

0 comments on commit fa11ff7

Please sign in to comment.