#!/bin/bash # Generate script bindings for Cocos2D-X-lite # ... using Android NDK system headers # ... and push these changes to remote repos # Dependencies # # For bindings generator: # (see tools/tojs/genbindings.py for the defaults used if the environment is not customized) # # * $PYTHON_BIN # * $CLANG_ROOT # * $NDK_ROOT # DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" PROJECT_ROOT="$DIR/../.." TOJS_ROOT="$PROJECT_ROOT/tools/tojs" JS_AUTO_GENERATED_DIR="$PROJECT_ROOT/cocos/scripting/js-bindings/auto" COMMITTAG="[ci skip][AUTO]: updating jsbinding automatically" ELAPSEDSECS=`date +%s` COCOS_BRANCH="update_js_bindings_$ELAPSEDSECS" COCOS_ROBOT_REMOTE="https://${GH_USER}:${GH_PASSWORD}@github.com/${GH_USER}/cocos2d-x-lite.git" PULL_REQUEST_REPO="https://api.github.com/repos/cocos-creator/cocos2d-x-lite/pulls" FETCH_REMOTE_BRANCH=$1 JS_COMMIT_PATH="cocos/scripting/js-bindings/auto" # Exit on error set -e generate_bindings_glue_codes() { echo "Create auto-generated jsbinding glue codes." pushd "$TOJS_ROOT" ./genbindings.py rm userconf.ini popd } pushd "$PROJECT_ROOT" #Set git user for cocos2d-js repo git config user.email ${GH_EMAIL} git config user.name ${GH_USER} popd # 1. Generate js bindings generate_bindings_glue_codes if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then exit 0 fi if [ -z "${GH_EMAIL}" ]; then echo "GH_EMAIL not set" exit 1 fi if [ -z "${GH_USER}" ]; then echo "GH_USER not set" exit 1 fi if [ -z "${GH_PASSWORD}" ]; then echo "GH_USER not set" exit 1 fi echo echo Bindings generated successfully echo echo echo Using "'$COMMITTAG'" in the commit messages echo echo Using "$ELAPSEDSECS" in the branch names for pseudo-uniqueness # 2. In Bindings repo, Check if there are any files that are different from the index pushd "$PROJECT_ROOT" # Run status to record the output in the log git status echo echo Comparing with origin HEAD ... echo git fetch origin ${FETCH_REMOTE_BRANCH} # Don't exit on non-zero return value set +e git diff FETCH_HEAD --stat --exit-code ${JS_COMMIT_PATH} JS_DIFF_RETVAL=$? if [ $JS_DIFF_RETVAL -eq 0 ] then echo echo "No differences in generated files" echo "Exiting with success." echo exit 0 else echo echo "Generated files differ from HEAD. Continuing." echo fi # Exit on error set -e git add -f --all "$JS_AUTO_GENERATED_DIR" git checkout -b "$COCOS_BRANCH" git commit -m "$COMMITTAG" #Set remotes git remote add upstream "$COCOS_ROBOT_REMOTE" 2> /dev/null > /dev/null git fetch upstream --no-recurse-submodules echo "Pushing to Robot's repo ..." # git push -fq upstream "$COCOS_BRANCH" 2> /dev/null git push -fq upstream "$COCOS_BRANCH" # 7. echo "Sending Pull Request to base repo ..." curl --user "${GH_USER}:${GH_PASSWORD}" --request POST --data "{ \"title\": \"$COMMITTAG\", \"body\": \"\", \"head\": \"${GH_USER}:${COCOS_BRANCH}\", \"base\": \"${TRAVIS_BRANCH}\"}" "${PULL_REQUEST_REPO}" 2> /dev/null > /dev/null popd