Skip to content

Commit

Permalink
random commit to force a build
Browse files Browse the repository at this point in the history
  • Loading branch information
smac89 committed Feb 20, 2020
1 parent 92f9ff4 commit c709f28
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
mkdir -p $JCEF_DIR/jcef_build
cd $JCEF_DIR/jcef_build

# Generate build script with cmake
if [[ "${TRAVIS_OS_NAME}" == 'osx' ]]; then
# generate build script with cmake
if [ "$TRAVIS_OS_NAME" = 'osx' ]; then
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DPROJECT_ARCH="x86_64" ../
else
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=$CC -DCMAKE_CXX_COMPILER=$CXX ../
Expand All @@ -17,11 +17,10 @@ set +x

cd ../tools

# Compile the java source on Linux
if [[ "${TRAVIS_OS_NAME}" == 'linux' ]]; then
# compile the java source on Linux
if [ "$TRAVIS_OS_NAME" = 'linux' ]; then
./compile.sh $ARCH_DIST
fi

# Generate docs, copy libraries and jars to binary_distrib folder, etc
# generate docs, copy libraries and jars to binary_distrib folder, etc
./make_distrib.sh $ARCH_DIST

0 comments on commit c709f28

Please sign in to comment.