Sign inSign up

avvo/circle_dropper

By avvo

•Updated over 8 years ago

Moves JUnit CircleCI artifacts into S3.

Image
0

6.5K

avvo/circle_dropper repository overview

⁠circle_dropper

This system moves CircleCI junit artifacts into S3. They could be retrieved by anything, including an awesome JUnit visualizer⁠.

CircleCI will produce JUnit artifacts using certain gems to format the output.

These environment variables are required:

  • CIRCLE_CI_TOKEN
  • AWS_ACCESS_KEY_ID
  • AWS_SECRET_ACCESS_KEY
  • AWS_BUCKET
  • AWS_REGION (where the bucket is you want to write to)

Get a CircleCI token⁠

Learn more about AWS environment variables⁠

With CircleCi 2.0, you need to explicitly save the test artifacts. In your config.yml, include the following:

- store_artifacts:
  path: /<path to project>/test/reports
  destination: circle-junit

Specifying the circle-junit destination ensures that circle dropper only tries to read/upload junit.xml files.

Optional environment variables:

  • BRANCHES - specify a csv of branches and we will pull only those. For example if you want to collect data only for master, set BRANCHES=master
  • REDIS_HOST
  • REDIS_PORT
  • SECRET_KEY_BASE (only required in production)

A docker image of this project is available at https://hub.docker.com/r/avvo/circle_dropper/⁠ To set up fully in docker, deploy that container twice, and link one to the other. Set the second linked container's deploy command to bin/sidekiq. Then link a redis container (probably redis:3.0-alpine) to BOTH circle_dropper containers. Then set the above required environment variables on the two circle_dropper containers.

This system uses sidekiq and redis.

Tag summary

Content type

Image

Digest

Size

132.4 MB

Last updated

about 9 years ago

docker pull avvo/circle_dropper