You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.yml 572B

12345678910111213141516171819202122232425262728
  1. version: 2
  2. jobs:
  3. build:
  4. docker:
  5. - image: circleci/openjdk:8-jdk
  6. steps:
  7. - run:
  8. name: Report on build environment
  9. command: |
  10. java -version
  11. javac -version
  12. - checkout
  13. - run: ant
  14. - run: ant test
  15. - run:
  16. name: Collect test results
  17. command: |
  18. mkdir -p test_reports/junit/
  19. cp -a build/tests/TEST-*.xml test_reports/junit/
  20. - store_test_results:
  21. path: test_reports
  22. - store_artifacts:
  23. path: build/target/reports