Merge pull request #574 from jMonkeyEngine/cleanup_build_scripts_master
Improve build scripts (master)native-compilation-test
commit
a784818211
@ -0,0 +1,50 @@ |
||||
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: |
||||
priv_key: |
||||
secure: g0Q/3gQcGBr74DyDiaTi48DSKEuNAympaHF0pjWeeQgKlPZEBUNPKbBM+okJn13/IvEo5YiQO19l/0G0B6J0oiEAm9h8x+I31jskKFUD5Og9xZkZB0m0aI7zoBReiZTqojIBw8zZo4xXCkOhFTrzxaeJtqdtcObPFGWk4uUdPlcne3e81NHj6TWax2tx+yqA0i6Jkz+Jd+XvbicskgthjCmcNz07XhS7F6niC8REbSU= |
||||
|
||||
init: |
||||
- ps: >- |
||||
$fileContent = "-----BEGIN EC PRIVATE KEY-----`n" |
||||
$fileContent += $env:priv_key.Replace(' ', "`n") |
||||
$fileContent += "`n-----END EC PRIVATE KEY-----`n" |
||||
Set-Content c:\users\appveyor\.ssh\id_rsa $fileContent |
||||
|
||||
install: |
||||
- cmd: del C:\Users\appveyor\.gradle\caches\modules-2\modules-2.lock |
||||
|
||||
build_script: |
||||
- cmd: gradlew.bat --no-daemon -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: >- |
||||
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 |
||||
distributionPath=wrapper/dists |
||||
zipStoreBase=GRADLE_USER_HOME |
||||
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.
Loading…
Reference in new issue