Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allows uncommons-math tests to run on Travis-CI. #19

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="core/src/java/main"/>
<classpathentry kind="src" path="core/src/java/test"/>
<classpathentry kind="src" path="demo/src/java/main"/>
<classpathentry kind="src" path="demo/src/java/test"/>
<classpathentry kind="lib" path="lib/compiletime/bnd/bnd-1.50.0.jar"/>
<classpathentry kind="lib" path="lib/compiletime/cobertura/asm-3.0.jar"/>
<classpathentry kind="lib" path="lib/compiletime/cobertura/asm-tree-3.0.jar"/>
<classpathentry kind="lib" path="lib/compiletime/cobertura/cobertura.jar"/>
<classpathentry kind="lib" path="lib/compiletime/cobertura/jakarta-oro-2.0.8.jar"/>
<classpathentry kind="lib" path="lib/compiletime/cobertura/log4j-1.2.9.jar"/>
<classpathentry kind="lib" path="lib/compiletime/maven/maven-ant-tasks-2.0.10.jar"/>
<classpathentry kind="lib" path="lib/compiletime/testng/reportng-1.1.2.jar"/>
<classpathentry kind="lib" path="lib/compiletime/testng/testng-5.13.1.jar"/>
<classpathentry kind="lib" path="lib/compiletime/testng/velocity-dep-1.4.jar"/>
<classpathentry kind="lib" path="lib/compiletime/uncommons-antlib-0.3.1.jar"/>
<classpathentry kind="lib" path="lib/runtime/jcommon-1.0.12.jar"/>
<classpathentry kind="lib" path="lib/runtime/jfreechart-1.0.8.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ temp
website
*/build
*.iws
*.log
.DS_Store
/bin/
737 changes: 737 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Large diffs are not rendered by default.

280 changes: 280 additions & 0 deletions .idea/misc.xml

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1,004 changes: 1,004 additions & 0 deletions .idea/workspace.xml

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>uncommons-maths</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
40 changes: 40 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
language: java
dist: trusty
group: edge
sudo: true # TODO: Find out why we always time out in the container environment

jdk:
- oraclejdk9
- oraclejdk8
- oraclejdk7
- openjdk8
- openjdk7
- openjdk6
matrix:
allow_failures:
- jdk: oraclejdk9 # Still experimental on Travis
- jdk: oraclejdk7 # https://github.com/travis-ci/travis-ci/issues/7884
- jdk: openjdk6 # Unknown Travis issue
env:
global:
- JAVA_OPTS="-XX:+AggressiveOpts -XX:+UseAES -XX:+UseAESIntrinsics"
matrix:
- ANT_TARGET="test"
- ANT_TARGET="diehard_aes_1"
- ANT_TARGET="diehard_aes_2"
- ANT_TARGET="diehard_automaton_1"
- ANT_TARGET="diehard_automaton_2"
- ANT_TARGET="diehard_cmwc_1"
- ANT_TARGET="diehard_cmwc_2"
- ANT_TARGET="diehard_mersenne_1"
- ANT_TARGET="diehard_mersenne_2"
- ANT_TARGET="diehard_xor_1"
- ANT_TARGET="diehard_xor_2"
- ANT_TARGET="diehard_java_1"
- ANT_TARGET="diehard_java_2"
addons:
apt:
packages:
- dieharder
script:
- travis_wait 40 ant "$ANT_TARGET"
Loading