commit
13eec17ddd
@ -0,0 +1,51 @@ |
|||||||
|
version: 1.0.{build}.{branch} |
||||||
|
|
||||||
|
branches: |
||||||
|
only: |
||||||
|
- master |
||||||
|
|
||||||
|
only_commits: |
||||||
|
files: |
||||||
|
- jme3-bullet-native/ |
||||||
|
|
||||||
|
skip_tags: true |
||||||
|
|
||||||
|
max_jobs: 1 |
||||||
|
|
||||||
|
clone_depth: 1 |
||||||
|
|
||||||
|
image: Visual Studio 2013 |
||||||
|
|
||||||
|
environment: |
||||||
|
encrypted_f0a0b284e2e8_iv: |
||||||
|
secure: aImQXs4g7zMXm1nWRvlh2wPK1UQvozS1fOVNthpyoEDFZ2FvBSdXqh5NPbGh44+F |
||||||
|
encrypted_f0a0b284e2e8_key: |
||||||
|
secure: Ek2lqC2e19qQDRRdlvnYyLFBq3TNj6YwKTAPuJ2VElJsxi9lQg+9ZP+VbP4kbHTx6Zaa++vtmOuxLZL7gdILrEEPa1Jix2BBLBfcxBUxe6w= |
||||||
|
|
||||||
|
install: |
||||||
|
- cmd: del C:\Users\appveyor\.gradle\caches\modules-2\modules-2.lock |
||||||
|
|
||||||
|
build_script: |
||||||
|
- cmd: gradlew.bat -PbuildNativeProjects=true :jme3-bullet-native:assemble |
||||||
|
|
||||||
|
cache: |
||||||
|
- C:\Users\appveyor\.gradle\caches |
||||||
|
- C:\Users\appveyor\.gradle\wrapper |
||||||
|
- jme3-bullet-native\bullet3.zip |
||||||
|
|
||||||
|
test: off |
||||||
|
deploy: off |
||||||
|
|
||||||
|
on_success: |
||||||
|
- cmd: >- |
||||||
|
openssl aes-256-cbc -K %encrypted_f0a0b284e2e8_key% -iv %encrypted_f0a0b284e2e8_iv% -in private\key.enc -out c:\users\appveyor\.ssh\id_rsa -d |
||||||
|
|
||||||
|
git checkout -q %APPVEYOR_REPO_BRANCH% |
||||||
|
|
||||||
|
git add -- jme3-bullet-native/libs/native/windows/ |
||||||
|
|
||||||
|
git commit -m "[ci skip] bullet: update windows natives" |
||||||
|
|
||||||
|
git pull -q --rebase |
||||||
|
|
||||||
|
git push git@github.com:jMonkeyEngine/jmonkeyengine.git |
@ -1,6 +1,6 @@ |
|||||||
#Sat Apr 30 16:44:31 EDT 2016 |
#Fri Nov 25 13:05:50 EST 2016 |
||||||
distributionBase=GRADLE_USER_HOME |
distributionBase=GRADLE_USER_HOME |
||||||
distributionPath=wrapper/dists |
distributionPath=wrapper/dists |
||||||
zipStoreBase=GRADLE_USER_HOME |
zipStoreBase=GRADLE_USER_HOME |
||||||
zipStorePath=wrapper/dists |
zipStorePath=wrapper/dists |
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.13-bin.zip |
distributionUrl=https\://services.gradle.org/distributions/gradle-3.2.1-bin.zip |
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,16 @@ |
|||||||
|
#!/bin/bash |
||||||
|
set -euo pipefail |
||||||
|
# NATIVE_CHANGES="$(git diff-tree --name-only "$TRAVIS_COMMIT" -- jme3-bullet-native/)" |
||||||
|
# if [ "$NATIVE_CHANGES" != "" ]; then |
||||||
|
git config --global user.email "travis-ci" |
||||||
|
git config --global user.name "travis-ci" |
||||||
|
openssl aes-256-cbc -K $encrypted_f0a0b284e2e8_key -iv $encrypted_f0a0b284e2e8_iv -in private/key.enc -out "$HOME/.ssh/id_rsa" -d |
||||||
|
chmod 600 "$HOME/.ssh/id_rsa" |
||||||
|
ls jme3-bullet-native/build/libs/bulletjme/shared/ |
||||||
|
md5 -r jme3-bullet-native/libs/native/osx/x86/libbulletjme.dylib jme3-bullet-native/build/libs/bulletjme/shared/mac32/libbulletjme.dylib |
||||||
|
git checkout "$TRAVIS_BRANCH" |
||||||
|
git add -v -- jme3-bullet-native/libs/native/ |
||||||
|
git commit -v -m "[ci skip] bullet: update $TRAVIS_OS_NAME natives" |
||||||
|
git pull -q --rebase |
||||||
|
# git push git@github.com:jMonkeyEngine/jmonkeyengine.git |
||||||
|
# fi |
Binary file not shown.
Loading…
Reference in new issue