Changes between Version 14 and Version 15 of TravisCoverals


Ignore:
Timestamp:
Mar 11, 2017, 9:51:47 AM (6 years ago)
Author:
Antony Polukhin
Comment:

Added minor comment on appveyor.yml file location setup

Legend:

Unmodified
Added
Removed
Modified
  • TravisCoverals

    v14 v15  
    2222* go to [https://www.appveyor.com/ Appveyor]
    2323* go to [https://ci.appveyor.com/projects/new] and enable builds for the forked project.
     24* if you're going to add the `appveyor.yml` file not in the root directory, set the "Custom configuration .yml file name" in project settings https://ci.appveyor.com/project/<your_login>/lexical_cast/settings
     25 to the future file location (for example `test/appveyor.yml`)
    2426
    2527* now add the `.travis.yml` and `appveyor.yml` files, tune the `README.md` and commit changes:
     
    2931cp ../variant/test/appveyor.yml ./test/                      # Copying appveyor.yml from Boost.Variant
    3032sed -i 's/IGNORE_COVERAGE=.*/IGNORE_COVERAGE=/g' .travis.yml # Reseting files to ignore in coverage tests report
    31 sed -i 's/variant/lexical_cast/g' test/appveyor.yml          # Reseting library to ignore
     33sed -i 's/variant/lexical_cast/g' test/appveyor.yml          # Resetting library to ignore
    3234git add .travis.yml test/appveyor.yml                        # Adding .travis.yml and test/appveyor.yml for next commit
    3335
     
    4143git push                                                     # push changes to boostorg and forked repo using one command
    4244}}}
    43 
    4445
    4546That's it! If everything is done right, you'll see the build process going on TravisCI and after ~20 minutes results will be visible in README.md view on github.