This repository has been archived by the owner on Sep 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove wpiutil and update to the new build system (#210)
- Loading branch information
1 parent
f43675e
commit 5df7463
Showing
168 changed files
with
658 additions
and
16,072 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ | |
|
||
# Build directories | ||
/.gradle | ||
/build* | ||
/build/ | ||
!build.gradle | ||
/native | ||
/arm | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,26 @@ | ||
version: "{branch} {build}" | ||
|
||
image: | ||
- Visual Studio 2015 | ||
- Visual Studio 2013 | ||
|
||
build: | ||
verbosity: detailed | ||
|
||
build_script: | ||
- gradlew.bat assemble --info -PskipArm | ||
|
||
test_script: | ||
- cmd: >- | ||
SET JAVA_HOME=C:\Program Files\Java\jdk1.8.0 | ||
gradlew.bat check --info -PskipArm | ||
SET JAVA_HOME=C:\Program Files (x86)\Java\jdk1.8.0 | ||
gradlew.bat check --info -PskipArm | ||
cache: | ||
- C:\Users\appveyor\.gradle | ||
|
||
matrix: | ||
fast_finish: true | ||
version: "{branch} {build}" | ||
|
||
image: | ||
- Visual Studio 2015 | ||
|
||
build: | ||
verbosity: detailed | ||
|
||
build_script: | ||
- gradlew.bat assemble --info -PbuildAll | ||
|
||
test_script: | ||
- cmd: >- | ||
SET JAVA_HOME=C:\Program Files\Java\jdk1.8.0 | ||
gradlew.bat check --info -PbuildAll | ||
SET JAVA_HOME=C:\Program Files (x86)\Java\jdk1.8.0 | ||
gradlew.bat check --info -PbuildAll | ||
cache: | ||
- C:\Users\appveyor\.gradle | ||
|
||
matrix: | ||
fast_finish: true |
Oops, something went wrong.