This is an automated email from the git hooks/post-receive script. eugene-guest pushed a commit to annotated tag testng-6.9.5 in repository testng.
commit 513754df26e86fb3c1869c0d917d61aa7ef7fdc5 Author: Julien Herr <[email protected]> Date: Fri May 29 11:44:58 2015 +0200 Use AppVeyor as Windows CI --- CHANGES.txt | 1 + README.md | 1 + appveyor.yml | 25 +++++++++++++++++++++++++ 3 files changed, 27 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 609e364..c6b2be6 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,6 +7,7 @@ Fixed: GITHUB-420: Before/AfterSuite methods may not run, when use inheritance, Fixed: GITHUB-697: Make addFailedInvocationNumber thread-safe (Ryan Schmitt) Fixed: GITHUB-698: Fix exit code reporting when IRetryAnalyzer is used (Ryan Schmitt) Fixed: GITHUB-465: assertEquals(Collection, Collection) prints "null" when collections are different sizes (Michael Diamond) +New: GITHUB-xxx: AppVeyor is used for continuous integration on Windows (Julien Herr) Eclipse: diff --git a/README.md b/README.md index 8237267..8b1ab7b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ [](https://travis-ci.org/cbeust/testng) +[](https://ci.appveyor.com/project/cbeust/testng) [](https://www.versioneye.com/user/projects/553a031c4e5d2e9408000059) [](https://www.versioneye.com/java/org.testng:testng/references) [](https://maven-badges.herokuapp.com/maven-central/org.testng/testng) diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..3212f2d --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,25 @@ +version: "{branch} {build}" +skip_tags: true +clone_depth: 10 + +build: + verbosity: detailed + +build_script: + - gradlew.bat assemble --info --no-daemon + +test_script: + - gradlew.bat test --info --no-daemon + +environment: + matrix: + - JAVA_HOME: C:\Program Files\Java\jdk1.7.0 + - JAVA_HOME: C:\Program Files\Java\jdk1.8.0 + - JAVA_HOME: C:\Program Files (x86)\Java\jdk1.7.0 + - JAVA_HOME: C:\Program Files (x86)\Java\jdk1.8.0 + +matrix: + fast_finish: true + +cache: + - C:\Users\appveyor\.gradle \ No newline at end of file -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/testng.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

