0.04
No release in over 3 years
Low commit activity in last 3 years
Travis build artifacts tools
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

~> 0.33.0
~> 0.9.0
~> 1.22.0
~> 1.6.0
 Project Readme

Travis Artifacts

🚫 This project is no longer maintained. Please see https://github.com/travis-ci/artifacts 🚫

If your tests produce files, for example stack traces or logs, you can easily upload them to Amazon S3.

See the Travis blog for more:

http://about.travis-ci.org/blog/2012-12-18-travis-artifacts/

The minimum AWS policy needed for the gem to work

{
  "Statement": [
    {
      "Action": [
        "s3:ListBucket"
      ],
      "Effect": "Allow",
      "Resource": [
        "arn:aws:s3:::your-bucket"
      ]
    },
    {
      "Action": [
        "s3:PutObject",
        "s3:PutObjectAcl"
      ],
      "Effect": "Allow",
      "Resource": [
        "arn:aws:s3:::your-bucket/*"
      ]
    }
  ]
}