Skip to content
This repository has been archived by the owner on Sep 21, 2020. It is now read-only.

Commit

Permalink
Switches to the new build system (#87)
Browse files Browse the repository at this point in the history
* Removes old build system

* Removes old gmock

* Adds new gmock

* Moves source files to new locations

* Adds new build system
  • Loading branch information
ThadHouse authored and PeterJohnson committed Aug 19, 2017
1 parent 9d45088 commit 133540f
Show file tree
Hide file tree
Showing 96 changed files with 929 additions and 1,676 deletions.
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
gradlew.bat eol=crlf
6 changes: 3 additions & 3 deletions .gitignore
Expand Up @@ -27,8 +27,8 @@

.vs/
*.def
!ntcore.def
!ntcore-jni.def
!cscore.def
!cscore-jni.def
*.opensdf
*.vcxproj
*.vcxproj.user
Expand All @@ -41,7 +41,7 @@

# Build directories
/.gradle
/build*
/build/
!build.gradle
/native
/arm
Expand Down
31 changes: 31 additions & 0 deletions .travis.yml
@@ -0,0 +1,31 @@
language: java

matrix:
include:
- os: linux
dist: trusty
sudo: required
- os: osx
osx_image: xcode8

addons:
apt:
packages:
- g++-multilib
- lib32stdc++6

before_install:
- .travis-scripts/install.sh

install:
- ./gradlew build -PbuildAll

script:
- ./gradlew build -PbuildAll

before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
21 changes: 15 additions & 6 deletions appveyor.yml
@@ -1,18 +1,27 @@
version: "{branch} {build}"

image:
- Visual Studio 2015

build:
verbosity: detailed

build_script:
- gradlew.bat assemble --info -PskipArm
- gradlew.bat tasks

test_script:
- gradlew.bat check --info -PskipArm
- cmd: >-
SET JAVA_HOME=C:\Program Files\Java\jdk1.8.0
gradlew.bat clean
gradlew.bat check --info
SET JAVA_HOME=C:\Program Files (x86)\Java\jdk1.8.0
gradlew.bat clean
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
- JAVA_HOME: C:\Program Files (x86)\Java\jdk1.8.0
gradlew.bat check --info
cache:
- C:\Users\appveyor\.gradle
Expand Down

0 comments on commit 133540f

Please sign in to comment.