You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
597 B
12 lines
597 B
#!/bin/sh
|
|
set -e
|
|
NATIVE_CHANGES="$(git diff-tree --name-only "$TRAVIS_COMMIT" -- jme3-bullet-native/)"
|
|
if [ "$NATIVE_CHANGES" != "" ]; then
|
|
./gradlew --no-daemon -PbuildNativeProjects=true :jme3-bullet-native:assemble
|
|
openssl aes-256-cbc -K $encrypted_f0a0b284e2e8_key -iv $encrypted_f0a0b284e2e8_iv -in private/key.enc -out "$HOME/.ssh/id_rsa" -d
|
|
git checkout -q "$TRAVIS_BRANCH"
|
|
git add -- jme3-bullet-native/libs/native/
|
|
git commit -m "[ci skip] bullet: update $TRAVIS_OS_NAME natives"
|
|
git pull -q --rebase
|
|
git push git@github.com:jMonkeyEngine/jmonkeyengine.git
|
|
fi
|
|
|