Changes between Version 14 and Version 15 of TravisCoverals
- Timestamp:
- Mar 11, 2017, 9:51:47 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TravisCoverals
v14 v15 22 22 * go to [https://www.appveyor.com/ Appveyor] 23 23 * 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`) 24 26 25 27 * now add the `.travis.yml` and `appveyor.yml` files, tune the `README.md` and commit changes: … … 29 31 cp ../variant/test/appveyor.yml ./test/ # Copying appveyor.yml from Boost.Variant 30 32 sed -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 # Reset ing library to ignore33 sed -i 's/variant/lexical_cast/g' test/appveyor.yml # Resetting library to ignore 32 34 git add .travis.yml test/appveyor.yml # Adding .travis.yml and test/appveyor.yml for next commit 33 35 … … 41 43 git push # push changes to boostorg and forked repo using one command 42 44 }}} 43 44 45 45 46 That'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.